diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-05-13 05:36:43 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-05-14 01:48:33 +0900 |
commit | f580bd8fdb22f5f1876f6fe8803b9beab3c5faca (patch) | |
tree | 187157083e12164fc0637138e864c20200e4c93f /test/scenario_test/ci-scripts | |
parent | ce3177c565ac735bfa838ed4757e23830288553c (diff) |
test: enhance route server test
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test/ci-scripts')
-rw-r--r-- | test/scenario_test/ci-scripts/travis-build-script.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/scenario_test/ci-scripts/travis-build-script.sh b/test/scenario_test/ci-scripts/travis-build-script.sh index e273d38a..1bf4c67c 100644 --- a/test/scenario_test/ci-scripts/travis-build-script.sh +++ b/test/scenario_test/ci-scripts/travis-build-script.sh @@ -36,6 +36,9 @@ PIDS=() sudo PYTHONPATH=$GOBGP/test python route_server_test.py --gobgp-image $GOBGP_IMAGE --test-prefix rs -x & PIDS=("${PIDS[@]}" $!) +sudo PYTHONPATH=$GOBGP/test python route_server_test2.py --gobgp-image $GOBGP_IMAGE --test-prefix rs2 -x & +PIDS=("${PIDS[@]}" $!) + sudo PYTHONPATH=$GOBGP/test python route_server_ipv4_v6_test.py --gobgp-image $GOBGP_IMAGE --test-prefix v6 -x & PIDS=("${PIDS[@]}" $!) |