X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Ftools%2Fstreaming%2Frun;fp=tests%2Ftools%2Fstreaming%2Frun;h=0000000000000000000000000000000000000000;hp=d7ca754fd9f2d55697b26fb9b4ab68331792e109;hb=de9a8b415bcb8d81989bab02457fdeda48bb7219;hpb=f4e40ab68a515750cdde6877b53fafb5210ceac6 diff --git a/tests/tools/streaming/run b/tests/tools/streaming/run deleted file mode 100755 index d7ca754fd..000000000 --- a/tests/tools/streaming/run +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -DIR=$(dirname $0) - -tests=( $DIR/run-kernel $DIR/run-ust ) -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 - exit_code=1 - break - fi - done -} - -start_tests - -exit $exit_code