diff --git a/.travis.yml b/.travis.yml index e5cd093..15d1e38 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/testing/integration/cases/run_with_reconnection.sh b/testing/integration/cases/run_with_reconnection.sh deleted file mode 100644 index d193f48..0000000 --- a/testing/integration/cases/run_with_reconnection.sh +++ /dev/null @@ -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} diff --git a/testing/integration/cases/run_without_reconnection.sh b/testing/integration/cases/run_without_reconnection.sh deleted file mode 100644 index 0f12a93..0000000 --- a/testing/integration/cases/run_without_reconnection.sh +++ /dev/null @@ -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