Tests: accept built-in kernel modules
[lttng-tools.git] / tests / utils / utils.sh
index 88a4ddd20c30216d6f19ea07b4160df998cb3c9b..0583b5c1999b757595e430b1032b493851564136 100644 (file)
@@ -139,10 +139,19 @@ function conf_proc_count()
 # Bail out on failure
 function validate_lttng_modules_present ()
 {
 # Bail out on failure
 function validate_lttng_modules_present ()
 {
+       # Check for loadable modules.
        modprobe -n lttng-tracer 2>/dev/null
        modprobe -n lttng-tracer 2>/dev/null
-       if [ $? -ne 0  ]; then
-               BAIL_OUT "LTTng modules not detected."
+       if [ $? -eq 0 ]; then
+               return 0
        fi
        fi
+
+       # Check for builtin modules.
+       ls /proc/lttng > /dev/null 2>&1
+       if [ $? -eq 0 ]; then
+               return 0
+       fi
+
+       BAIL_OUT "LTTng modules not detected."
 }
 
 function enable_kernel_lttng_event
 }
 
 function enable_kernel_lttng_event
This page took 0.024471 seconds and 5 git commands to generate.