Tests: size-based rotation: implement a trace size cutoff protection
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 5 Jul 2022 20:43:26 +0000 (16:43 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 7 Jul 2022 19:21:30 +0000 (15:21 -0400)
Stop waiting for rotations when the trace exceeds a certain size cutoff.
This prevents those tests from filling a hard drive when they fail.

However, this check is racy since it is possible for an arbitrary number
of apps to run before the session daemon gets a chance to perform the
scheduled rotations.

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I465462e6f1d5c17ada2b3aceb68662d8663254eb

tests/regression/tools/rotation/rotate_utils.sh
tests/regression/tools/rotation/test_kernel
tests/regression/tools/rotation/test_ust

index 8ac2afab7aeefbf4644d205ec61a88e251e65079..146f7e25cc529fa0023b6ecfbac5f485418f3fcb 100644 (file)
@@ -150,15 +150,22 @@ function trace_until_n_archives ()
        local produce_events=$1
        local trace_path=$2
        local target_archive_count=$3
        local produce_events=$1
        local trace_path=$2
        local target_archive_count=$3
+       local trace_size_cutoff=$4
        local archive_count=0
        local archive_count=0
+       local trace_size=0
 
        diag "Waiting for $target_archive_count size-based rotations to occur"
 
        diag "Waiting for $target_archive_count size-based rotations to occur"
-       while [[ archive_count -lt $target_archive_count ]]
+       while [[ archive_count -lt $target_archive_count && $trace_size -lt $trace_size_cutoff ]]
        do
                archive_count=$(find "$trace_path" -mindepth 2 -maxdepth 2 -type d -path "*archives*" | wc -l)
        do
                archive_count=$(find "$trace_path" -mindepth 2 -maxdepth 2 -type d -path "*archives*" | wc -l)
+               trace_size=$(du -b "$trace_path" | tail -n1 | cut -f1)
                $produce_events 2000
        done
 
                $produce_events 2000
        done
 
+       if [[ $trace_size -ge $trace_size_cutoff ]]; then
+               diag "Exceeded size cutoff of $trace_size_cutoff bytes while waiting for $target_archive_count rotations"
+       fi
+
        [[ $archive_count -eq $target_archive_count ]]
        ok $? "Found $target_archive_count trace archives resulting from trace archive rotations"
 }
        [[ $archive_count -eq $target_archive_count ]]
        ok $? "Found $target_archive_count trace archives resulting from trace archive rotations"
 }
index 62bc5c33d7fda975b4a6294b4ade05d395e398c9..760930e958a506754fafd9b7689d662910431355 100755 (executable)
@@ -96,7 +96,8 @@ function test_kernel_local_size ()
        lttng_enable_rotation_size_ok $SESSION_NAME $size_threshold
        start_lttng_tracing_ok $SESSION_NAME
 
        lttng_enable_rotation_size_ok $SESSION_NAME $size_threshold
        start_lttng_tracing_ok $SESSION_NAME
 
-       trace_until_n_archives produce_n_events "$TRACE_PATH" 5
+       # Cutoff at 100 times the expected size
+       trace_until_n_archives produce_n_events "$TRACE_PATH" 5 $((5 * 100 * size_threshold))
 
        destroy_lttng_session_ok $SESSION_NAME
 }
 
        destroy_lttng_session_ok $SESSION_NAME
 }
index aaeee4454c7a38255bb84af162b9b4450d04a031..043b123bfa2f640d6edbd0cb30a29cad50ef72a2 100755 (executable)
@@ -274,7 +274,8 @@ function test_ust_local_size_uid ()
        lttng_enable_rotation_size_ok $SESSION_NAME $size_threshold
        start_lttng_tracing_ok $SESSION_NAME
 
        lttng_enable_rotation_size_ok $SESSION_NAME $size_threshold
        start_lttng_tracing_ok $SESSION_NAME
 
-       trace_until_n_archives produce_n_events "$TRACE_PATH" 5
+       # Cutoff at 100 times the expected size
+       trace_until_n_archives produce_n_events "$TRACE_PATH" 5 $((5 * 100 * size_threshold))
 
        destroy_lttng_session_ok $SESSION_NAME
 }
 
        destroy_lttng_session_ok $SESSION_NAME
 }
@@ -291,7 +292,8 @@ function test_ust_local_size_pid ()
        lttng_enable_rotation_size_ok $SESSION_NAME $size_threshold
        start_lttng_tracing_ok $SESSION_NAME
 
        lttng_enable_rotation_size_ok $SESSION_NAME $size_threshold
        start_lttng_tracing_ok $SESSION_NAME
 
-       trace_until_n_archives produce_n_events "$TRACE_PATH" 3
+       # Cutoff at 100 times the expected size
+       trace_until_n_archives produce_n_events "$TRACE_PATH" 3 $((3 * 100 * size_threshold))
 
        destroy_lttng_session_ok $SESSION_NAME
 }
 
        destroy_lttng_session_ok $SESSION_NAME
 }
This page took 0.026538 seconds and 4 git commands to generate.