X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Ftools%2Frunall.sh;h=ca44fef0e7b96d23dad9d7305c9496d9766cfdba;hb=529f6ac258480d9b6d21499927901b8d734a2597;hp=5fdbda62b4347726bfa3f6f980e8ec7ce6602b94;hpb=355f483d1713d1e047ad6256bea039cb693ae38e;p=lttng-tools.git diff --git a/tests/tools/runall.sh b/tests/tools/runall.sh index 5fdbda62b..ca44fef0e 100755 --- a/tests/tools/runall.sh +++ b/tests/tools/runall.sh @@ -2,13 +2,20 @@ 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