From: Simon Marchi Date: Mon, 11 Nov 2019 21:55:42 +0000 (-0500) Subject: tests: make test_trimmer use bt_cli X-Git-Tag: v2.0.0-rc3~7 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=c0def275351b9f938b27ab83d8cb5e4026fc57d5 tests: make test_trimmer use bt_cli ... instead of launching babeltrace2.exe by hand. This makes the testsuite print the executed command lines, and is therefore easier to debug. Change-Id: I82f3984e749b8e6aff38b529ed462373eabd24dc Signed-off-by: Simon Marchi --- diff --git a/tests/cli/test_trimmer b/tests/cli/test_trimmer index d6155785..a4356ba4 100755 --- a/tests/cli/test_trimmer +++ b/tests/cli/test_trimmer @@ -51,7 +51,7 @@ function expect_success() local msg="$2" shift 2 - "${BT_TESTS_BT2_BIN}" "${TRACE_PATH}" "$@" 2>/dev/null > "${tmp_out}" + bt_cli "${tmp_out}" /dev/null "${TRACE_PATH}" "$@" ok $? "trimmer: ${msg}: exit status" num_events=$(wc -l < "${tmp_out}") @@ -76,7 +76,7 @@ function expect_failure() # We check the error message logged by the trimmer plugin, set the env # var necessary for it to log errors. - BABELTRACE_FLT_UTILS_TRIMMER_LOG_LEVEL=E "${BT_TESTS_BT2_BIN}" "${TRACE_PATH}" "$@" 2> "${tmp_err}" > "${tmp_out}" + BABELTRACE_FLT_UTILS_TRIMMER_LOG_LEVEL=E bt_cli "${tmp_out}" "${tmp_err}" "${TRACE_PATH}" "$@" isnt $? 0 "trimmer: ${msg}: exit status" num_events=$(wc -l < "${tmp_out}")