Fix UST tests if lttng-ust is not available
[lttng-tools.git] / tests / runall.sh
index 17be11817f31c69cfa53433835593f15bc1847ca..08b3904838d1408e54a7c2474cc952be27349e9d 100755 (executable)
@@ -20,7 +20,7 @@
 #### ADD TESTS HERE ####
 
 test_suite=( test_sessions test_kernel_data_trace test_ust_data_trace
-                       lttng/runall.sh ust-nevents/run )
+                       lttng/runall.sh ust-nevents/run ust-nprocesses/run )
 
 #### END TESTS HERE ####
 
@@ -35,6 +35,11 @@ fi
 
 for bin in ${test_suite[@]};
 do
+       if [ ! -e $bin ]; then
+               echo -e "$bin not found, passing"
+               continue
+       fi
+
        ./$bin
        # Test must return 0 to pass.
        if [ $? -ne 0 ]; then
This page took 0.024254 seconds and 4 git commands to generate.