blob: 0c74936045494c929df002f4e3be268fee2d88d2 [file] [log] [blame]
Thomas Vachuskaf9c84362015-04-15 11:20:45 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
3# System Test Coordinator
4#-------------------------------------------------------------------------------
5
Brian O'Connor955c3162016-03-10 15:27:19 -08006VER=1.6.0-SNAPSHOT
Thomas Vachuska4bfccd542015-05-30 00:35:25 -07007JAR=~/.m2/repository/org/onosproject/onlab-stc/$VER/onlab-stc-$VER.jar
8SCENARIOS=$ONOS_ROOT/tools/test/scenarios
Thomas Vachuskaf9c84362015-04-15 11:20:45 -07009
Thomas Vachuska177ece62015-06-26 00:18:21 -070010DEBUG_OPTS="-agentlib:jdwp=transport=dt_socket,address=5005,server=y,suspend=y"
11
Thomas Vachuska4bfccd542015-05-30 00:35:25 -070012scenario=${1:-smoke}
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070013
Thomas Vachuska4bfccd542015-05-30 00:35:25 -070014[ ! -f $scenario ] && scenario=$SCENARIOS/$scenario
15[ ! -f $scenario ] && scenario=$scenario.xml
16[ ! -f $scenario ] && echo "Scenario $scenario file not found" && exit 1
17
Brian O'Connor3683f4d2015-09-16 17:44:30 -070018# Remove the test name from the list of parameters, if one is specified
Thomas Vachuska50ec1af2015-06-02 00:42:52 -070019[ $# -ge 1 ] && shift
20
Brian O'Connor3683f4d2015-09-16 17:44:30 -070021# If stcColor is not set, we will enable color if this is an interactive session
22[ -t 1 ] && interactive=true || interactive=false
Thomas Vachuska7c5b6532015-11-02 14:50:33 -080023[ -t 1 ] && notInteractive=false || notInteractive=true
Thomas Vachuska50ec1af2015-06-02 00:42:52 -070024
Brian O'Connor3683f4d2015-09-16 17:44:30 -070025# Run stc
Thomas Vachuska1b403a52015-08-26 11:30:48 -070026[ -z "$stcDebug" ] && DEBUG_OPTS=""
Thomas Vachuska7c5b6532015-11-02 14:50:33 -080027stcColor=${stcColor:-$interactive} stcDumpLogs=${stcDumpLogs:-$notInteractive} \
28 java $DEBUG_OPTS -jar $JAR $scenario "$@"