.gitignore: ignore local vscode workspace settings file
[lttng-tools.git] / tests / regression / tools / notification / test_notification_kernel_userspace_probe
index fba14062fa61e7ae39430020d5736ef9047f3e62..38f5a5f41426e6f887ac963939a77f00ffc37321 100755 (executable)
@@ -7,9 +7,7 @@
 CURDIR=$(dirname "$0")/
 TESTDIR=$CURDIR/../../../
 
-TMPDIR=$(mktemp -d)
-
-TESTAPP_STATE_PATH=$(mktemp -u "$TMPDIR/application_state.XXXXXXXXXX")
+TESTAPP_STATE_PATH=$(mktemp -u -t "tmp.test_notif_kernel_uprobe_application_state.XXXXXXXXXX")
 
 NUM_TESTS=13
 
@@ -31,19 +29,18 @@ function test_kernel_userspace_probe_notification
        wait $APP_PID 2> /dev/null
 }
 
-if [ "$(id -u)" == "0" ]; then
-       validate_lttng_modules_present
+check_skip_kernel_test &&
+{
+       plan_skip_all "Skipping all tests."
+       exit 0
+}
+
+validate_lttng_modules_present
 
-       start_lttng_sessiond_notap
+start_lttng_sessiond_notap
 
-       test_kernel_userspace_probe_notification
+test_kernel_userspace_probe_notification
 
-       stop_lttng_sessiond_notap
-else
-       # Kernel tests are skipped.
-       plan_tests $NUM_TESTS
-       skip 0 "Root access is needed. Skipping all kernel notification tests." $NUM_TESTS
-fi
+stop_lttng_sessiond_notap
 
-# Just in case cleanup
-rm -rf "$TMPDIR"
+rm -f "$TESTAPP_STATE_PATH"
This page took 0.023698 seconds and 4 git commands to generate.