Test: rotate_utils.sh: consider chunk archive with ust/ as empty
[lttng-tools.git] / tests / regression / tools / rotation / rotate_utils.sh
index cb2fc53b9877f2b08c5b41eda40b08f2bd456a9f..42009f85b97674484852dfedf3ac01a06c5b1158 100644 (file)
@@ -133,11 +133,13 @@ function rotate_timer_test ()
        # chunks should be empty folders
        if test $per_pid = 1; then
                validate_trace_empty $local_path/${chunk_pattern}-0
-               nr=$(ls $local_path/${chunk_pattern}-1/ | wc -l)
-               test $nr = 0
+               nr=$(find $local_path/${chunk_pattern}-1/ | wc -l)
+               # contains self and may contain ust/ subdir (local) or not (remote).
+               test $nr -le 2
                ok $? "Chunk 2 is empty"
-               nr=$(ls $local_path/${chunk_pattern}-2/ | wc -l)
-               test $nr = 0
+               nr=$(find $local_path/${chunk_pattern}-2/ | wc -l)
+               # contains self and may contain ust/ subdir (local) or not (remote).
+               test $nr -le 2
                ok $? "Chunk 3 is empty"
        else
                while [ $i -le $expected_chunks ]; do
This page took 0.023097 seconds and 4 git commands to generate.