diff --git a/test/includes/common.sh b/test/includes/common.sh index 6fec9d6a..dc127a10 100644 --- a/test/includes/common.sh +++ b/test/includes/common.sh @@ -65,7 +65,7 @@ httpd_run() { httpd_wait_until_ready() { local i=0 - curl -s localhost:6666 &> /dev/null + curl localhost:6666 while [ $? -ne 0 ]; do i=$(expr $i + 1) @@ -74,7 +74,7 @@ httpd_wait_until_ready() { exit 1; fi sleep 10; - curl -s localhost:6666 &> /dev/null + curl localhost:6666 done echo "httpd ready after $i attempts" }