diff options
author | Naoto Hanaue <hanaue.naoto@po.ntts.co.jp> | 2015-09-04 16:16:07 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-09-04 22:15:12 +0900 |
commit | b8cd37c9d4f8c5b6519daa2effe08db0591df0ad (patch) | |
tree | 4ec20e0cb77909732dac610700ca15a23ebb6091 /test/scenario_test/run_all_tests.sh | |
parent | 03789fa0cee9a11bf272d202c74bf03f2ad0ec51 (diff) |
scenario_test: update run_all_tests.sh for the newly added test
Diffstat (limited to 'test/scenario_test/run_all_tests.sh')
-rwxr-xr-x | test/scenario_test/run_all_tests.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/scenario_test/run_all_tests.sh b/test/scenario_test/run_all_tests.sh index d6f72d54..a79379b7 100755 --- a/test/scenario_test/run_all_tests.sh +++ b/test/scenario_test/run_all_tests.sh @@ -55,10 +55,14 @@ PIDS=("${PIDS[@]}" $!) sudo -E python flow_spec_test.py --gobgp-image $GOBGP_IMAGE --test-prefix flow -s -x --with-xunit --xunit-file=${WS}/nosetest_flow.xml & PIDS=("${PIDS[@]}" $!) -# flowspec test +# route reflector test sudo -E python route_reflector_test.py --gobgp-image $GOBGP_IMAGE --test-prefix rr -s -x --with-xunit --xunit-file=${WS}/nosetest_rr.xml & PIDS=("${PIDS[@]}" $!) +# zebra test +sudo -E python bgp_zebra_test.py --gobgp-image $GOBGP_IMAGE --test-prefix zebra -s -x --with-xunit --xunit-file=${WS}/nosetest.xml & +PIDS=("${PIDS[@]}" $!) + # route server malformed message test NUM=$(sudo -E python route_server_malformed_test.py -s 2> /dev/null | awk '/invalid/{print $NF}') PARALLEL_NUM=10 |