summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtests/run.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/run.sh b/tests/run.sh
index 0239907..6986a30 100755
--- a/tests/run.sh
+++ b/tests/run.sh
@@ -3,6 +3,14 @@
set -e
set -x
+echo "Wait for the HTTP server to start ..."
+for i in $( seq 1 10 ) ; do
+ if curl -s -o /dev/null http://localhost/ ; then
+ break
+ fi
+ sleep 3
+done
+
echo "Testing Require pam-account"
curl -s -D /dev/stdout -o /dev/null http://localhost/authz | tee /dev/stderr | grep 401
curl -u alice:Tajnost -s -D /dev/stdout -o /dev/null http://localhost/authz | tee /dev/stderr | grep 401