3 # Copyright (C) - 2013 Christian Babeux <christian.babeux@efficios.com>
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License, version 2 only, as
7 # published by the Free Software Foundation.
9 # This program is distributed in the hope that it will be useful, but WITHOUT
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 # You should have received a copy of the GNU General Public License along with
15 # this program; if not, write to the Free Software Foundation, Inc., 51
16 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 BABELTRACE_BIN
=$CURDIR/..
/..
/converter
/babeltrace
23 CTF_TRACES
=@ABSTOPSRCDIR@
/tests
/ctf-traces
25 source $TESTDIR/utils
/tap
/tap.sh
27 SUCCESS_TRACES
=(${CTF_TRACES}/succeed
/*)
28 FAIL_TRACES
=(${CTF_TRACES}/fail
/*)
30 NUM_TESTS
=$
((${#SUCCESS_TRACES[@]} + ${#FAIL_TRACES[@]}))
34 for path
in ${SUCCESS_TRACES[@]}; do
35 trace
=$
(basename ${path})
36 $BABELTRACE_BIN ${path} > /dev
/null
2>&1
37 ok $?
"Run babeltrace with trace ${trace}"
40 for path
in ${FAIL_TRACES[@]}; do
41 trace
=$
(basename ${path})
42 $BABELTRACE_BIN ${path} > /dev
/null
2>&1
44 fail
"Run babeltrace with invalid trace ${trace}"
46 pass
"Run babeltrace with invalid trace ${trace}"
This page took 0.03462 seconds and 5 git commands to generate.