Add unit tests for URIs
[lttng-tools.git] / tests / tools / runall.sh
index 5fdbda62b4347726bfa3f6f980e8ec7ce6602b94..7630a1321a99802f5ac15792030ea48666154eba 100755 (executable)
@@ -2,13 +2,19 @@
 
 DIR=$(dirname $0)
 
-tests=( $DIR/test_kernel_data_trace $DIR/test_sessions $DIR/test_ust_data_trace )
+tests=( $DIR/test_kernel_data_trace $DIR/test_sessions $DIR/test_ust_data_trace \
+               $DIR/streaming/runall )
 exit_code=0
 
 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.022876 seconds and 4 git commands to generate.