tmf: Add unit tests for lost events in CTF traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / traces / get-traces.sh
1 #!/bin/sh
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
14 #This small script will download the traces needed to run some tests.
15
16 # Trace used by the CTF plugin unit tests
17 wget 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
20 wget http://www.dorsal.polymtl.ca/~alexmont/data/trace2.tar.bz2 -O- | tar xvjf - &&
21
22 # Trace using event contexts
23 wget http://www.dorsal.polymtl.ca/~alexmont/data/kernel_vm.tar.bz2 -O- | tar xvjf - &&
24
25 # Trace with lost events
26 wget http://www.dorsal.polymtl.ca/~alexmont/data/hello-lost.tar.bz2 -O- | tar xvjf - &&
27
28 # CTF test suite, used for testing CTF parser compliance
29 git clone https://github.com/efficios/ctf-testsuite.git
This page took 0.043207 seconds and 5 git commands to generate.