Break up test scripts

This commit is contained in:
2019-06-19 18:53:31 +02:00
parent dd8e62bdab
commit 0004064a27
7 changed files with 114 additions and 89 deletions

8
test/startwebserver.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
echo "Starting webserver..."
until pgrep "$SERVER"; do
cd "$SERVER_DIR" && ./$SERVER &
sleep 2
done