Add lttng-modules detection for tests
[lttng-tools.git] / tests / runall.sh
index e7f83ed11e2a89e09bd7b2737a4b9d13d80776dd..8abc4aaa124944d5c6a9013460efa58b4bc25610 100755 (executable)
 
 #### ADD TESTS HERE ####
 
-for bin in test_sessions;
+test_suite=( test_sessions test_kernel_data_trace lttng/runall.sh )
+
+#### END TESTS HERE ####
+
+for bin in ${test_suite[@]};
 do
        ./$bin
+       # Test must return 0 to pass.
+       if [ $? -ne 0 ]; then
+               echo -e '\e[1;31mFAIL\e[0m'
+               echo ""
+               exit 1
+       fi
 done
 
-#### END TESTS HERE ####
-
 echo ""
 exit 0
This page took 0.022908 seconds and 4 git commands to generate.