diff options
author | CNlucius <lukai1@huawei.com> | 2016-09-13 11:40:12 +0800 |
---|---|---|
committer | CNlucius <lukai1@huawei.com> | 2016-09-13 11:41:53 +0800 |
commit | b731e2f1dd0972409b136aebc7b463dd72c9cfad (patch) | |
tree | 5107d7d80c19ad8076c2c97c2b5ef8d1cf3ab903 /framework/src/onos/utils/stc/bin | |
parent | ee93993458266114c29271a481ef9ce7ce621b2a (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/utils/stc/bin')
-rwxr-xr-x | framework/src/onos/utils/stc/bin/stc | 12 | ||||
-rwxr-xr-x | framework/src/onos/utils/stc/bin/stc-launcher | 19 |
2 files changed, 0 insertions, 31 deletions
diff --git a/framework/src/onos/utils/stc/bin/stc b/framework/src/onos/utils/stc/bin/stc deleted file mode 100755 index 541ddcbb..00000000 --- a/framework/src/onos/utils/stc/bin/stc +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -#------------------------------------------------------------------------------- -# System Test Coordinator -#------------------------------------------------------------------------------- - -STC_ROOT=${STC_ROOT:-$(dirname $0)/..} -cd $STC_ROOT -VER=1.4.0-rc1 - -PATH=$PWD/bin:$PATH - -java -jar target/onlab-stc-$VER.jar "$@" diff --git a/framework/src/onos/utils/stc/bin/stc-launcher b/framework/src/onos/utils/stc/bin/stc-launcher deleted file mode 100755 index 0d56017e..00000000 --- a/framework/src/onos/utils/stc/bin/stc-launcher +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -#------------------------------------------------------------------------------- -# System Test Coordinator process launcher -#------------------------------------------------------------------------------- - -env=$1 && shift -cwd=$1 && shift - -if [ $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 |