diff options
author | Juraj Sloboda <jsloboda@cisco.com> | 2016-02-23 15:03:13 +0100 |
---|---|---|
committer | Stefan Kobza <skobza@cisco.com> | 2016-03-07 18:40:42 +0100 |
commit | da8aebf2e722f2c441a03b300de71f9143d010a3 (patch) | |
tree | 386aa3af6c6050df29b4b0e850b1098d60b4c7f1 /bootstrap.sh | |
parent | 8120dcdc84da7ff1dee097240bc1ecf18914397c (diff) |
Modify sweep ping test cases
- Write separate sweep ping test cases for jumbo frames
- Compute sweep ping end size from reported MTU on DUT interface
- Set MTU on TG according to MTU on DUT interface
- Log VPP packet traces on IPv4 and IPv6 tests failure
- Remove VM_ENV tag from sweep ping test cases for jumbo frames
Change-Id: I47aa7977bcff9c4366c67578aef542924a1d055b
Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index 893a8db3e3..37508668ff 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -142,7 +142,7 @@ if [ "$?" -ne "0" ]; then exit ${retval} fi -if [[ ! "${VIRL_SID}" =~ session-[a-zA-Z0-9]{6} ]]; then +if [[ ! "${VIRL_SID}" =~ session-[a-zA-Z0-9_]{6} ]]; then echo "No VIRL session ID reported." exit 127 fi @@ -173,9 +173,8 @@ pip install -r requirements.txt PYTHONPATH=`pwd` pybot -L TRACE \ -v TOPOLOGY_PATH:topologies/enabled/topology.yaml \ - --include vm_env \ - --include 3_NODE_SINGLE_LINK_TOPO \ --exclude 3_node_double_link_topoNOT3_node_single_link_topo \ + --include VM_ENV \ --exclude PERFTEST \ --noncritical EXPECTED_FAILING \ tests/ |