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/tools/test/bin/stc | |
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/tools/test/bin/stc')
-rwxr-xr-x | framework/src/onos/tools/test/bin/stc | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/framework/src/onos/tools/test/bin/stc b/framework/src/onos/tools/test/bin/stc deleted file mode 100755 index c4dde4e7..00000000 --- a/framework/src/onos/tools/test/bin/stc +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash -#------------------------------------------------------------------------------- -# System Test Coordinator -#------------------------------------------------------------------------------- - -VER=1.4.0-rc1 -JAR=~/.m2/repository/org/onosproject/onlab-stc/$VER/onlab-stc-$VER.jar -SCENARIOS=$ONOS_ROOT/tools/test/scenarios - -DEBUG_OPTS="-agentlib:jdwp=transport=dt_socket,address=5005,server=y,suspend=y" - -scenario=${1:-smoke} - -[ ! -f $scenario ] && scenario=$SCENARIOS/$scenario -[ ! -f $scenario ] && scenario=$scenario.xml -[ ! -f $scenario ] && echo "Scenario $scenario file not found" && exit 1 - -# Remove the test name from the list of parameters, if one is specified -[ $# -ge 1 ] && shift - -# If stcColor is not set, we will enable color if this is an interactive session -[ -t 1 ] && interactive=true || interactive=false -[ -t 1 ] && notInteractive=false || notInteractive=true - -# stc requires that ONOS_USE_SSH=true, but we will store the old value and reset it after -sshSet=$([ -z ${ONOS_USE_SSH+x} ]) && oldSSH=$ONOS_USE_SSH -export ONOS_USE_SSH=true - -# Run stc -[ -z "$stcDebug" ] && DEBUG_OPTS="" -stcColor=${stcColor:-$interactive} stcDumpLogs=${stcDumpLogs:-$notInteractive} \ - java $DEBUG_OPTS -jar $JAR $scenario "$@" - -# Reset the old value of ONOS_USE_SSH -[ $sshSet ] && export ONOS_USE_SSH=oldSSH || unset ONOS_USE_SSH |