diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/scripts/run_tests.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh index fdc1ee3..b83cff9 100755 --- a/tests/scripts/run_tests.sh +++ b/tests/scripts/run_tests.sh @@ -186,9 +186,11 @@ run_basic_webclient_request "$TINYPROXY_IP:$TINYPROXY_PORT" "http://$WEBSERVER_I echo -n "requesting statspage via stathost url..." run_basic_webclient_request "$TINYPROXY_IP:$TINYPROXY_PORT" "http://$TINYPROXY_STATHOST_IP" -echo "You can continue using the webserver and tinyproxy." -echo -n "hit <enter> to stop the servers and exit: " -read READ +if test "x$TINYPROXY_TESTS_WAIT" = "xyes"; then + echo "You can continue using the webserver and tinyproxy." + echo -n "hit <enter> to stop the servers and exit: " + read READ +fi stop_tinyproxy stop_webserver |