Tests: Move tests to tests/regression
[lttng-tools.git] / tests / tools / health / runall
diff --git a/tests/tools/health/runall b/tests/tools/health/runall
deleted file mode 100755 (executable)
index d1c8b34..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-
-DIR=$(dirname $0)
-
-tests=( $DIR/health_thread_exit $DIR/health_thread_stall $DIR/health_tp_fail)
-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
-}
-
-if [ "$(id -u)" != "0" ]; then
-       echo -e "Need root for health test."
-       exit 0
-fi
-
-start_tests
-
-exit $exit_code
This page took 0.023122 seconds and 4 git commands to generate.