diff options
author | Jan Gelety <jgelety@cisco.com> | 2016-09-02 10:58:45 +0200 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2016-09-12 10:46:54 +0000 |
commit | 8a38a84dceac843151d3e5c9367667999638ab10 (patch) | |
tree | 170211a6a4454490c7d7c7b739433a75a1654953 /bootstrap-vpp-verify-weekly.sh | |
parent | 131efb9019691347a1a29796fa7f8f192f2bdf9a (diff) |
Small changes in bootstraps of timed jobs
- weekly: set appropriate length of line in the console
- semiweekly: set appropriate length of line in the console
and remove classifier (-deb) from the info what vpp version
will be tested
Change-Id: I7ff36d9e61e922cd200b9248b7ba645b0b4cf54e
Signed-off-by: Jan Gelety <jgelety@cisco.com>
Diffstat (limited to 'bootstrap-vpp-verify-weekly.sh')
-rw-r--r-- | bootstrap-vpp-verify-weekly.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/bootstrap-vpp-verify-weekly.sh b/bootstrap-vpp-verify-weekly.sh index 4bf1726313..94688ed66d 100644 --- a/bootstrap-vpp-verify-weekly.sh +++ b/bootstrap-vpp-verify-weekly.sh @@ -202,7 +202,7 @@ for test_set in 1 2 3 do echo echo ${test_set}. test loop - PYTHONPATH=`pwd` pybot -L TRACE \ + PYTHONPATH=`pwd` pybot -L TRACE -W 136\ -v TOPOLOGY_PATH:${SCRIPT_DIR}/topologies/enabled/topology.yaml \ --suite "tests.func" \ --include vm_envAND3_node_single_link_topo \ @@ -222,10 +222,10 @@ done if [ ${RC} -eq 0 ]; then set +x echo - echo "==============================================================================" - echo "Final result of all test loops: | PASS |" + echo "========================================================================================================================================" + echo "Final result of all test loops: | PASS |" echo "All critical tests have passed." - echo "==============================================================================" + echo "========================================================================================================================================" echo set -x elif [ ${MORE_FAILS} -eq 0 ]; then @@ -236,19 +236,19 @@ elif [ ${MORE_FAILS} -eq 0 ]; then fi set +x echo - echo "==============================================================================" - echo "Final result of all test loops: | FAIL |" + echo "========================================================================================================================================" + echo "Final result of all test loops: | FAIL |" echo "${RC} critical ${HLP_STR} failed." - echo "==============================================================================" + echo "========================================================================================================================================" echo set -x else set +x echo - echo "==============================================================================" - echo "Final result of all test loops: | FAIL |" + echo "========================================================================================================================================" + echo "Final result of all test loops: | FAIL |" echo "More then 250 critical tests have failed in one test loop." - echo "==============================================================================" + echo "========================================================================================================================================" echo set -x fi |