Fix tests when lttng-ust is disabled
[lttng-tools.git] / tests / tools / runall.sh
index 5fdbda62b4347726bfa3f6f980e8ec7ce6602b94..96c217cf591c7f4f817e8dcb1779dfda5d4147c4 100755 (executable)
@@ -9,6 +9,11 @@ function start_tests ()
 {
     for bin in ${tests[@]};
     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.023318 seconds and 4 git commands to generate.