Port: don't quote wc output in test scripts
[babeltrace.git] / tests / cli / test_trimmer.in
CommitLineData
0c305c6e
JD
1#!/bin/bash
2#
3# Copyright (C) - 2017 Julien Desfossez <jdesfossez@efficios.com>
4#
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.
8#
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
12# more details.
13#
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.
17
de3fb4cd 18. "@abs_top_srcdir@/tests/utils/common.sh"
0c305c6e 19
de3fb4cd 20TRACE_PATH="${BT_CTF_TRACES}/succeed/wk-heartbeat-u/"
0c305c6e
JD
21
22NUM_TESTS=10
23
24plan_tests $NUM_TESTS
25
26tmp_out=$(mktemp)
27
de3fb4cd
MJ
28"${BT_BIN}" --clock-gmt --begin 17:48:17.587029529 --end 17:48:17.588680018 \
29 "${TRACE_PATH}" >/dev/null 2>&1
0c305c6e
JD
30ok $? "Read the trace with the trimmer enabled"
31
de3fb4cd
MJ
32"${BT_BIN}" --clock-gmt --begin 17:48:17.587029529 "${TRACE_PATH}" \
33 2>/dev/null >"${tmp_out}"
0c305c6e 34ok $? "Running with --begin"
de3fb4cd 35cnt=$(wc -l < "${tmp_out}")
3119de00 36test $cnt == 18
0c305c6e
JD
37ok $? "Expected number of events after trimming begin and end"
38
de3fb4cd
MJ
39"${BT_BIN}" --clock-gmt --end 17:48:17.588680018 "${TRACE_PATH}" \
40 2>/dev/null >"${tmp_out}"
0c305c6e 41ok $? "Running with --end"
de3fb4cd 42cnt=$(wc -l < "${tmp_out}")
3119de00 43test $cnt == 9
0c305c6e
JD
44ok $? "Expected number of events after trimming end"
45
de3fb4cd
MJ
46"${BT_BIN}" --clock-gmt --begin 17:48:17.587029529 --end 17:48:17.588680018 \
47 "${TRACE_PATH}" 2>/dev/null >"${tmp_out}"
0c305c6e 48ok $? "Running with --begin and --end"
de3fb4cd 49cnt=$(wc -l < "${tmp_out}")
3119de00 50test $cnt == 7
0c305c6e
JD
51ok $? "Expected number of events after trimming begin and end"
52
de3fb4cd
MJ
53"${BT_BIN}" --clock-gmt --begin 18:48:17.587029529 "${TRACE_PATH}" \
54 2>/dev/null >"${tmp_out}"
0c305c6e 55ok $? "Running with --begin out of range"
de3fb4cd 56cnt=$(wc -l < "${tmp_out}")
3119de00 57test $cnt == 0
0c305c6e
JD
58ok $? "No event output when begin is after the end of the trace"
59
de3fb4cd
MJ
60"${BT_BIN}" --clock-gmt --end 16:48:17.588680018 "${TRACE_PATH}" \
61 2>/dev/null >"${tmp_out}"
62cnt=$(wc -l < "${tmp_out}")
3119de00 63test $cnt == 0
0c305c6e
JD
64ok $? "No event output when end is before the beginning of the trace"
65
de3fb4cd 66rm "${tmp_out}"
This page took 0.026905 seconds and 4 git commands to generate.