3 # Copyright (C) - 2015 Julien Desfossez <jdesfossez@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.
18 TESTDIR
=@abs_top_srcdir@
/tests
20 BABELTRACE_BIN
=@abs_top_builddir@
/cli
/babeltrace
21 CTF_TRACES
=@abs_top_srcdir@
/tests
/ctf-traces
23 source $TESTDIR/utils
/tap
/tap.sh
34 test $
($BABELTRACE_BIN $trace |
wc -l) = $totalevents
35 ok $?
"$totalevents events in the whole trace"
36 test $
($BABELTRACE_BIN --stream-intersection $trace 2>/dev
/null|
wc -l) = $intersect
37 ok $?
"$intersect events in packets intersecting"
40 diag
"Test the stream intersection feature"
42 diag
"2 streams offsetted with 3 packets intersecting"
43 test_intersect
${CTF_TRACES}/intersection
/3eventsintersect
8 3
45 diag
"2 streams offsetted with 3 packets intersecting (exchanged file names)"
46 test_intersect
${CTF_TRACES}/intersection
/3eventsintersectreverse
8 3
48 diag
"No intersection between 2 streams"
49 test_intersect
${CTF_TRACES}/intersection
/nointersect
6 0
52 test_intersect
${CTF_TRACES}/intersection
/onestream
3 3
54 diag
"No stream at all"
55 test_intersect
${CTF_TRACES}/intersection
/nostream
0 0
This page took 0.035186 seconds and 4 git commands to generate.