lttng: Unit tests for the UST callstack provider
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / traces / get-traces.sh
CommitLineData
813ecc8e 1#!/bin/sh
61dfcb35
AM
2#*******************************************************************************
3# Copyright (c) 2012, 2013 Ericsson
4#
5# All rights reserved. This program and the accompanying materials
6# are made available under the terms of the Eclipse Public License v1.0
7# which accompanies this distribution, and is available at
8# http://www.eclipse.org/legal/epl-v10.html
9#
10# Contributors:
11# Alexandre Montplaisir - Initial version
12#*******************************************************************************
13
813ecc8e
AM
14#This small script will download the traces needed to run some tests.
15
16# Trace used by the CTF plugin unit tests
17wget http://lttng.org/files/samples/sample-ctf-trace-20120412.tar.bz2 -O- | tar xvjf - &&
18
19# Trace used by the lttng2 kernel state provider tests
4311ac8b
MAL
20wget http://www.dorsal.polymtl.ca/~alexmont/data/trace2.tar.bz2 -O- | tar xvjf - &&
21
9824473b
AM
22# Trace using event contexts
23wget http://www.dorsal.polymtl.ca/~alexmont/data/kernel_vm.tar.bz2 -O- | tar xvjf - &&
24
45f672d6
AM
25# Trace with lost events
26wget http://www.dorsal.polymtl.ca/~alexmont/data/hello-lost.tar.bz2 -O- | tar xvjf - &&
27
9824473b 28# CTF test suite, used for testing CTF parser compliance
6e4358bd 29git clone https://github.com/efficios/ctf-testsuite.git &&
e73a4ba5
GB
30
31# Trace used by the lttng2 kernel to match packets and synchronize
32wget http://www.dorsal.polymtl.ca/~gbastien/traces/synctraces.tar.gz -O- | tar xvzf - &&
33
6e4358bd
AM
34# Traces with lttng-ust-cyg-profile (-finstrument-functions) events
35wget http://www.dorsal.polymtl.ca/~alexmont/data/cyg-profile.tar.bz2 -O- | tar xvjf -
36
This page took 0.031947 seconds and 5 git commands to generate.