diff options
author | Michael Adam <obnox@samba.org> | 2009-09-13 01:31:05 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-09-13 01:31:05 +0200 |
commit | 5a96099cde733e1b31e59e26e17ab9468b5cf599 (patch) | |
tree | c346077b6df6ad28a3d137646f0e1373c2086b0a /tests | |
parent | abb2283e2ea8cd9e5c8a8c2b5795d4e45432f64c (diff) | |
download | tinyproxy-5a96099cde733e1b31e59e26e17ab9468b5cf599.tar.gz tinyproxy-5a96099cde733e1b31e59e26e17ab9468b5cf599.zip |
tests: print IP and port after firing up tinyproxy and webserver
Michael
Diffstat (limited to '')
-rwxr-xr-x | tests/scripts/run_tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh index dac67d9..e000084 100755 --- a/tests/scripts/run_tests.sh +++ b/tests/scripts/run_tests.sh @@ -95,7 +95,7 @@ EOF start_tinyproxy() { echo -n "starting tinyproxy..." $VALGRIND $TINYPROXY_BIN -c $TINYPROXY_CONF_FILE 2> $TINYPROXY_STDERR_LOG - echo " done" + echo " done (listening on $TINYPROXY_IP:$TINYPROXY_PORT)" } stop_tinyproxy() { @@ -116,7 +116,7 @@ provision_webserver() { start_webserver() { echo -n "starting web server..." $WEBSERVER_BIN --port $WEBSERVER_PORT --log-dir $WEBSERVER_LOG_DIR --pid-file $WEBSERVER_PID_FILE - echo " done" + echo " done (listening on $WEBSERVER_IP:$WEBSERVER_PORT)" } stop_webserver() { |