summaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/bin/stc-launcher
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/tools/test/bin/stc-launcher')
-rwxr-xr-xframework/src/onos/tools/test/bin/stc-launcher25
1 files changed, 0 insertions, 25 deletions
diff --git a/framework/src/onos/tools/test/bin/stc-launcher b/framework/src/onos/tools/test/bin/stc-launcher
deleted file mode 100755
index 6e473cdf..00000000
--- a/framework/src/onos/tools/test/bin/stc-launcher
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-#-------------------------------------------------------------------------------
-# System Test Coordinator process launcher
-#-------------------------------------------------------------------------------
-
-#sleep 5 && exit 0;
-
-env=$1 && shift
-cwd=$1 && shift
-
-if [ $env != "-" -a $env != "~" ]; then
- [ ! -f $env ] && echo "$env file not found" && exit 1
- source $env
-fi
-
-if [ $cwd != "-" ]; then
- [ ! -d $cwd ] && echo "$cwd directory not found" && exit 1
- cd $cwd
-fi
-
-"$@" 2>&1
-status=$?
-
-[ $env != "~" ] && exit $status
-exit 0