X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Flttng%2Frunall.sh;fp=tests%2Flttng%2Frunall.sh;h=0000000000000000000000000000000000000000;hp=c5446c9902a45c152af2cbbaab9d6c29b95c41b6;hb=355f483d1713d1e047ad6256bea039cb693ae38e;hpb=0e4cbe7e2c4c6a8343e710a3b050af8c33f95e21 diff --git a/tests/lttng/runall.sh b/tests/lttng/runall.sh deleted file mode 100755 index c5446c990..000000000 --- a/tests/lttng/runall.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -tests=( lttng/run-kernel-tests.sh lttng/run-ust-global-tests.sh ) -exit_code=0 - -function start_tests () -{ - for bin in ${tests[@]}; - do - ./$bin - # Test must return 0 to pass. - if [ $? -ne 0 ]; then - exit_code=1 - break - fi - done -} - -start_tests - -exit $exit_code