Remove redundant[now] specs

This commit is contained in:
Ivan Ilves 2017-07-13 07:37:14 +02:00
parent c285855807
commit 1acb760005
3 changed files with 0 additions and 33 deletions

View File

@ -23,8 +23,6 @@ script:
- testing/run_integration_case.sh do_server_teardown
- testing/run_integration_case.sh run_with_dns_propagation
- testing/run_integration_case.sh run_without_dns_propagation
- testing/run_integration_case.sh run_with_reconnection
- testing/run_integration_case.sh run_without_reconnection
- testing/run_integration_case.sh run_with_route_discovery
- testing/run_integration_case.sh run_without_route_discovery
- testing/run_integration_case.sh xaval

View File

@ -1,17 +0,0 @@
INIT_DELAY=5
DOWN_DELAY=5
${XIRI_EXE} -f 1 -X ${SSH_USER}@${REMOTE_IP} 10.245.245.245/32 &
XIRI_PID=${!}; sleep ${INIT_DELAY}
docker restart xiri-${DIST}
sleep ${INIT_DELAY}
warn "$(ip route | grep 10.245.245.245)"
if [[ -z "$(ip route | grep 10.245.245.245)" ]]; then
complain "Routing not restored after reconnection!"
exit 1
fi
kill_reliably ${XIRI_PID} ${DOWN_DELAY}

View File

@ -1,14 +0,0 @@
INIT_DELAY=5
${XIRI_EXE} -f 1 -X -R ${SSH_USER}@${REMOTE_IP} 10.245.245.245/32 &
XIRI_PID=${!}; sleep ${INIT_DELAY}
docker restart xiri-${DIST}
sleep ${INIT_DELAY}
warn "$(ip route | grep 10.245.245.245)"
if [[ -n "$(ip route | grep 10.245.245.245)" ]]; then
complain "Routing not down, but it should be!"
exit 1
fi