Improve tests and change tests/ directory layout
[lttng-tools.git] / tests / lttng / runall.sh
diff --git a/tests/lttng/runall.sh b/tests/lttng/runall.sh
deleted file mode 100755 (executable)
index c5446c9..0000000
+++ /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
This page took 0.024043 seconds and 4 git commands to generate.