summaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/bin/stc-launcher
diff options
context:
space:
mode:
authorCNlucius <lukai1@huawei.com>2016-09-13 11:40:12 +0800
committerCNlucius <lukai1@huawei.com>2016-09-13 11:41:53 +0800
commitb731e2f1dd0972409b136aebc7b463dd72c9cfad (patch)
tree5107d7d80c19ad8076c2c97c2b5ef8d1cf3ab903 /framework/src/onos/tools/test/bin/stc-launcher
parentee93993458266114c29271a481ef9ce7ce621b2a (diff)
ONOSFW-171
O/S-SFC-ONOS scenario documentation Change-Id: I51ae1cf736ea24ab6680f8edca1b2bf5dd598365 Signed-off-by: CNlucius <lukai1@huawei.com>
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