.gitignore: ignore local vscode workspace settings file
[lttng-tools.git] / tests / regression / tools / streaming / test_kernel
index 9ab43882c308ef88bc604f68e1671ed92a2eec43..3c78ac50bf5283fa9d9433fee3039efd895d8826 100755 (executable)
@@ -11,9 +11,9 @@ TESTDIR=$CURDIR/../../..
 EVENT_NAME="sched_switch"
 SESSION_NAME=""
 
-TRACE_PATH=$(mktemp -d)
+TRACE_PATH=$(mktemp -d -t tmp.test_streaming_kernel_trace_path.XXXXXX)
 
-NUM_TESTS=10
+NUM_TESTS=11
 
 source $TESTDIR/utils/utils.sh
 
@@ -47,13 +47,7 @@ plan_tests $NUM_TESTS
 
 print_test_banner "$TEST_DESC"
 
-if [ "$(id -u)" == "0" ]; then
-       isroot=1
-else
-       isroot=0
-fi
-
-skip $isroot "Root access is needed. Skipping all kernel streaming tests." $NUM_TESTS ||
+check_skip_kernel_test "$NUM_TESTS" "Skipping all tests." ||
 {
        validate_lttng_modules_present
 
@@ -68,6 +62,7 @@ skip $isroot "Root access is needed. Skipping all kernel streaming tests." $NUM_
                ${fct_test}
 
                # Validate test
+               validate_trace_path_kernel_network "$TRACE_PATH" "$SESSION_NAME"
                validate_trace $EVENT_NAME $TRACE_PATH/$HOSTNAME/$SESSION_NAME*
                if [ $? -eq 0 ]; then
                        # Only delete if successful
This page took 0.025238 seconds and 4 git commands to generate.