From 065509d3bd9342344f5c163705c64cbfbbd39af5 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 9 Oct 2019 15:45:51 -0400 Subject: [PATCH] tests: make test names in plugins/flt.utils.trimmer/test_trimming unique Change-Id: I1f1e4ef2a8eaa79704848a765f0bc209e7ee4b92 Signed-off-by: Simon Marchi Reviewed-on: https://review.lttng.org/c/babeltrace/+/2163 Reviewed-by: Francis Deslauriers --- tests/plugins/flt.utils.trimmer/test_trimming | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/tests/plugins/flt.utils.trimmer/test_trimming b/tests/plugins/flt.utils.trimmer/test_trimming index b1e267a0..cf83a780 100755 --- a/tests/plugins/flt.utils.trimmer/test_trimming +++ b/tests/plugins/flt.utils.trimmer/test_trimming @@ -40,6 +40,7 @@ function run_test { local begin_time="$1" local end_time="$2" + # with_stream_msgs_cs is set to "true" or "false" by the tests. local local_args=( "--plugin-path" "$data_dir" "-c" "src.test-trimmer.TheSourceOfAllEvil" @@ -48,11 +49,17 @@ function run_test "--params=compact=true,with-metadata=false" ) + if [ "$with_stream_msgs_cs" = "true" ]; then + test_name="with stream message clock snapshots" + else + test_name="without stream message clock snapshots" + fi + if [ -n "$begin_time" ]; then local_args+=("--begin=$begin_time") - test_name="with --begin=$begin_time" + test_name="$test_name, with --begin=$begin_time" else - test_name="without --begin" + test_name="$test_name, without --begin" fi if [ -n "$end_time" ]; then @@ -62,8 +69,6 @@ function run_test test_name="$test_name, without --end" fi - # with_stream_msgs_cs is set to "true" or "false" by the tests. - bt_diff_cli "$temp_stdout_expected" "$temp_stderr_expected" "${local_args[@]}" ok $? "$test_name" } -- 2.34.1