Tests: Move tests to tests/regression
[lttng-tools.git] / tests / ust / runall.sh
diff --git a/tests/ust/runall.sh b/tests/ust/runall.sh
deleted file mode 100755 (executable)
index 01afcec..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-DIR=$(dirname $0)
-
-tests=( $DIR/run-ust-global-tests.sh $DIR/nprocesses/run \
-               $DIR/high-throughput/run $DIR/before-after/run \
-               $DIR/multi-session/run $DIR/overlap/run )
-
-# $DIR/low-throughput/run --> DEACTIVATED.
-# Use only for release. This test last 20 minutes
-
-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.02267 seconds and 4 git commands to generate.