From 1bf1652c08dde3368e098c2f28260cb24f4aa0f8 Mon Sep 17 00:00:00 2001 From: ISHIDA Wataru Date: Fri, 3 Jul 2015 15:16:11 +0900 Subject: server/table: support iBGP behavior also added scenario_test Signed-off-by: ISHIDA Wataru --- test/scenario_test/ci-scripts/jenkins-build-script.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'test/scenario_test/ci-scripts/jenkins-build-script.sh') diff --git a/test/scenario_test/ci-scripts/jenkins-build-script.sh b/test/scenario_test/ci-scripts/jenkins-build-script.sh index e76e967a..0ed43247 100644 --- a/test/scenario_test/ci-scripts/jenkins-build-script.sh +++ b/test/scenario_test/ci-scripts/jenkins-build-script.sh @@ -46,7 +46,12 @@ sudo -E python route_server_policy_test.py --use-local --go-path $GOROOT/bin -s RET5=$? mv nosetests.xml ${WS}/nosetest_policy.xml -if [ $RET1 != 0 ] || [ $RET2 != 0 ] || [ $RET3 != 0 ] || [ $RET4 != 0 ] || [ $RET5 != 0 ]; then +# bgp router test +sudo -E python ibgp_router_test.py --use-local --go-path $GOROOT/bin -s --with-xunit +RET6=$? +mv nosetests.xml ${WS}/nosetest_ibgp.xml + +if [ $RET1 != 0 ] || [ $RET2 != 0 ] || [ $RET3 != 0 ] || [ $RET4 != 0 ] || [ $RET5 != 0 ] || [ $RET6 != 0 ]; then exit 1 fi exit 0 -- cgit v1.2.3