Tests: use modprobe to test for the presence of lttng-modules
[lttng-tools.git] / tests / utils / utils.sh
index af63824cefb901e391254306523e90385ad26186..26e59e383a9a3556c8f6a86dbb2deb4edb2d4c55 100644 (file)
@@ -125,6 +125,16 @@ function conf_proc_count()
        echo
 }
 
+# Check if base lttng-modules are present.
+# Bail out on failure
+function validate_lttng_modules_present ()
+{
+       modprobe -n lttng-tracer 2>/dev/null
+       if [ $? -ne 0  ]; then
+               BAIL_OUT "LTTng modules not detected."
+       fi
+}
+
 function enable_kernel_lttng_event
 {
        local withtap="$1"
This page took 0.023732 seconds and 4 git commands to generate.