diff options
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/ |