nextcloud/apps/user_ldap/tests/Integration/run-test.sh

18 lines
473 B
Bash
Raw Normal View History

2015-06-29 17:01:06 +03:00
#!/bin/sh
if [ $1 ] ; then
TESTSCRIPT=$1
else
echo "No test file given" exit
fi
if [ ! -e "$TESTSCRIPT" ] ; then
echo "Test file does not exist"
exit
fi
# sleep is necessary, otherwise the LDAP server cannot be connected to, yet.
setup-scripts/start.sh && sleep 5 && php -f "$TESTSCRIPT"
2015-06-29 17:01:06 +03:00
setup-scripts/stop.sh