cli, tests: rename "leftover" terms to "non-option"
[babeltrace.git] / tests / cli / convert / test_auto_source_discovery_log_level
index ee91889531d966483d4cac0b9cdd092c4352a424..6d2430e4d790d729e91ec92c6c7a3ec1e4df8ae3 100755 (executable)
@@ -45,7 +45,7 @@ print_log_level="--params print=\"log-level\""
 debug=2
 trace=1
 
-# Apply log level to two components from one leftover.
+# Apply log level to two components from one non-option argument.
 cat > "$expected_file" <<END
 TestSourceA: ${debug}
 TestSourceB: ${debug}
@@ -54,9 +54,9 @@ END
 bt_diff_cli_sorted "$expected_file" "$stderr_expected" \
        convert --plugin-path "${plugin_dir}" \
        "${dir_ab}" --log-level DEBUG ${print_log_level}
-ok "$?" "apply log level to two components from one leftover"
+ok "$?" "apply log level to two components from one non-option argument"
 
-# Apply log level to two components from two distinct leftovers.
+# Apply log level to two components from two distinct non-option arguments.
 cat > "$expected_file" <<END
 TestSourceA: ${debug}
 TestSourceB: ${trace}
@@ -65,9 +65,9 @@ END
 bt_diff_cli_sorted "$expected_file" "$stderr_expected" \
        convert --plugin-path "${plugin_dir}" \
        "${dir_a}" --log-level DEBUG ${print_log_level} "${dir_b}" --log-level TRACE ${print_log_level}
-ok "$?" "apply log level to two leftovers"
+ok "$?" "apply log level to two non-option arguments"
 
-# Apply log level to one component coming from one leftover and one component coming from two leftovers (1).
+# Apply log level to one component coming from one non-option argument and one component coming from two non-option arguments (1).
 cat > "$expected_file" <<END
 TestSourceA: ${trace}
 TestSourceB: ${trace}
@@ -76,9 +76,9 @@ END
 bt_diff_cli_sorted "$expected_file" "$stderr_expected" \
        convert --plugin-path "${plugin_dir}" \
        "${dir_a}" --log-level DEBUG ${print_log_level} "${dir_ab}" --log-level TRACE ${print_log_level}
-ok "$?" "apply log level to one component coming from one leftover and one component coming from two leftovers (1)"
+ok "$?" "apply log level to one component coming from one non-option argument and one component coming from two non-option arguments (1)"
 
-# Apply log level to one component coming from one leftover and one component coming from two leftovers (2).
+# Apply log level to one component coming from one non-option argument and one component coming from two non-option arguments (2).
 cat > "$expected_file" <<END
 TestSourceA: ${trace}
 TestSourceB: ${debug}
@@ -87,6 +87,6 @@ END
 bt_diff_cli_sorted "$expected_file" "$stderr_expected" \
        convert --plugin-path "${plugin_dir}" \
        "${dir_ab}" --log-level DEBUG ${print_log_level} "${dir_a}" --log-level TRACE ${print_log_level}
-ok "$?" "apply log level to one component coming from one leftover and one component coming from two leftovers (2)"
+ok "$?" "apply log level to one component coming from one non-option argument and one component coming from two non-option arguments (2)"
 
 rm -f "$expected_file"
This page took 0.026624 seconds and 4 git commands to generate.