tests: fix test_auto_source_discovery on mingw
[babeltrace.git] / tests / cli / auto-source-discovery / test_auto_source_discovery
CommitLineData
73760435
SM
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# Test the auto source disovery mechanism of the CLI.
19
20if [ "x${BT_TESTS_SRCDIR:-}" != "x" ]; then
21 UTILSSH="$BT_TESTS_SRCDIR/utils/utils.sh"
22else
23 UTILSSH="$(dirname "$0")/../../utils/utils.sh"
24fi
25
26# shellcheck source=../../utils/utils.sh
27SH_TAP=1 source "$UTILSSH"
28
ff89ed28 29NUM_TESTS=1
73760435
SM
30
31plan_tests $NUM_TESTS
32
9c5dd55a 33data_dir="${BT_TESTS_DATADIR}/cli/auto-source-discovery"
73760435
SM
34plugin_dir="${data_dir}"
35trace_dir="${data_dir}/traces"
36
ff89ed28
MJ
37if [ "$BT_OS_TYPE" = "mingw" ]; then
38 # Use Windows native paths for comparison because Unix
39 # paths are converted by the shell before they are passed
40 # to the native babeltrace2 binary.
41 trace_dir=$(cygpath -w "$trace_dir")
42 dir_sep='\'
43else
44 dir_sep='/'
45fi
73760435 46
ff89ed28
MJ
47expected_file=$(mktemp -t expected.XXXXXX)
48stderr_expected=/dev/null
73760435
SM
49
50cat > "$expected_file" <<END
51TestSourceABCDE: ABCDE
ff89ed28
MJ
52TestSourceExt: ${trace_dir}${dir_sep}aaa1, ${trace_dir}${dir_sep}aaa2, ${trace_dir}${dir_sep}aaa3
53TestSourceExt: ${trace_dir}${dir_sep}bbb1, ${trace_dir}${dir_sep}bbb2
54TestSourceExt: ${trace_dir}${dir_sep}ccc1
55TestSourceExt: ${trace_dir}${dir_sep}ccc2
56TestSourceExt: ${trace_dir}${dir_sep}ccc3
57TestSourceExt: ${trace_dir}${dir_sep}ccc4
58TestSourceSomeDir: ${trace_dir}${dir_sep}some-dir
73760435
SM
59END
60
ff89ed28 61bt_diff_cli_sorted "$expected_file" "$stderr_expected" convert --plugin-path "${plugin_dir}" "ABCDE" "${trace_dir}" some_other_leftover
73760435
SM
62ok "$?" "sources are auto-discovered"
63
ff89ed28 64rm -f "$expected_file"
This page took 0.025364 seconds and 4 git commands to generate.