Add unit tests for URIs
[lttng-tools.git] / tests / tools / streaming / run
diff --git a/tests/tools/streaming/run b/tests/tools/streaming/run
deleted file mode 100755 (executable)
index d7ca754..0000000
+++ /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
This page took 0.022899 seconds and 4 git commands to generate.