20719388bd8161094ef643539d9fc0cfc01ada1b
[babeltrace.git] / tests / cli / test_output_ctf_metadata
1 #!/bin/bash
2 #
3 # Copyright (C) 2019 Simon Marchi <simon.marchi@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
18 SH_TAP=1
19
20 if [ "x${BT_TESTS_SRCDIR:-}" != "x" ]; then
21 UTILSSH="$BT_TESTS_SRCDIR/utils/utils.sh"
22 else
23 UTILSSH="$(dirname "$0")/../utils/utils.sh"
24 fi
25
26 # shellcheck source=../utils/utils.sh
27 source "$UTILSSH"
28
29 NUM_TESTS=3
30
31 plan_tests $NUM_TESTS
32
33 tmp_metadata=$(mktemp)
34
35 # Test a valid trace directory.
36 "${BT_TESTS_BT2_BIN}" -o ctf-metadata "${BT_CTF_TRACES_PATH}/succeed/wk-heartbeat-u" > "$tmp_metadata"
37 ok $? "Run babeltrace -o ctf-metadata with a valid trace directory, correct exit status"
38
39 cmp -s "$tmp_metadata" "${BT_TESTS_DATADIR}/cli/test_output_ctf_metadata.ref"
40 ok $? "Run babeltrace -o ctf-metadata with a valid trace directory, correct output"
41
42 # Test an invalid trace directory.
43 "${BT_TESTS_BT2_BIN}" -o ctf-metadata "${BT_CTF_TRACES_PATH}" >/dev/null 2>&1
44 isnt $? 0 "Run babeltrace -o ctf-metadata with an invalid trace directory, expecting failure"
45
46 rm -f "$tmp_metadata"
This page took 0.030101 seconds and 3 git commands to generate.