tests: silence "variable/expression in single quote" shellcheck warnings
[babeltrace.git] / tests / cli / convert / test_auto_source_discovery_grouping
index 85e9f8fd967261e96cb34bb0a2134abd065af9c9..8378e625a70ffa8068978efb6e4872fa5d680fe9 100755 (executable)
@@ -49,7 +49,7 @@ stdout_actual_file=$(mktemp -t stdout-actual.XXXXXX)
 stderr_actual_file=$(mktemp -t actual-stderr.XXXXXX)
 
 bt_cli "$stdout_actual_file" "$stderr_actual_file" \
-       convert --plugin-path "${plugin_dir}" "ABCDE" "${trace_dir}" some_other_non_opt \
+       --plugin-path "${plugin_dir}" convert "ABCDE" "${trace_dir}" some_other_non_opt \
        -c sink.text.details --params='with-metadata=false'
 ok "$?" "CLI runs successfully"
 
@@ -58,6 +58,7 @@ bt_diff "$stdout_expected_file" "$stdout_actual_file"
 ok "$?" "expected components are instantiated with expected inputs"
 
 # Check that expected warning is printed.
+# shellcheck disable=SC2016
 grep -q 'No trace was found based on input `some_other_non_opt`' "$stderr_actual_file"
 ok "$?" "warning is printed"
 
This page took 0.024807 seconds and 4 git commands to generate.