tests: fix shellcheck warnings in plugins/flt.lttng-utils.debug-info/test_succeed
[babeltrace.git] / tests / plugins / flt.lttng-utils.debug-info / test_succeed
index 76b299feea1f1308dc76cb9a2e53665f043d1a5f..8a4c07b041c26e60d626c20eedf4475ed2903ab5 100755 (executable)
@@ -31,11 +31,10 @@ else
        UTILSSH="$(dirname "$0")/../../utils/utils.sh"
 fi
 
-# shellcheck source=../../../utils/utils.sh
+# shellcheck source=../../utils/utils.sh
 source "$UTILSSH"
 
 this_dir_relative="plugins/flt.lttng-utils.debug-info"
-this_dir_build="$BT_TESTS_BUILDDIR/$this_dir_relative"
 succeed_trace_dir="$BT_CTF_TRACES_PATH/succeed"
 expect_dir="$BT_TESTS_DATADIR/$this_dir_relative"
 binary_artefact_dir="$BT_TESTS_DATADIR/$this_dir_relative"
@@ -67,12 +66,17 @@ test_compare_to_ctf_fs() {
                "-c" "sink.text.details"
                "--params" "with-trace-name=false,with-stream-name=false,with-uuid=false"
        )
-       local actual_stdout=$(mktemp -t test_debug_info_stdout_actual.XXXXXX)
-       local actual_stderr=$(mktemp -t test_debug_info_stderr_actual.XXXXXX)
-       local expected_stdout=$(mktemp -t test_debug_info_stdout_expected.XXXXXX)
-       local expected_stderr=$(mktemp -t test_debug_info_stderr_expected.XXXXXX)
+       local actual_stdout
+       local actual_stderr
+       local expected_stdout
+       local expected_stderr
        local ret=0
 
+       actual_stdout=$(mktemp -t test_debug_info_stdout_actual.XXXXXX)
+       actual_stderr=$(mktemp -t test_debug_info_stderr_actual.XXXXXX)
+       expected_stdout=$(mktemp -t test_debug_info_stdout_expected.XXXXXX)
+       expected_stderr=$(mktemp -t test_debug_info_stderr_expected.XXXXXX)
+
        # Create expected files using a graph without a `debug-info` component.
        bt_cli "$expected_stdout" "$expected_stderr" "${cli_args[@]}" \
                "${details_cli_args[@]}"
This page took 0.023374 seconds and 4 git commands to generate.