aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/travis/caldav/script.sh
blob: aa5fc7329229d0ccc7e0c4d7780864405038f766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash
SCRIPT=`realpath $0`
SCRIPTPATH=`dirname $SCRIPT`

# start the server
php -S 127.0.0.1:8888 -t "$SCRIPTPATH/../../../../.." &

sleep 30

# run the tests
cd "$SCRIPTPATH/CalDAVTester"
PYTHONPATH="$SCRIPTPATH/pycalendar/src" python testcaldav.py --print-details-onfail --basedir "$SCRIPTPATH/../caldavtest/" -o cdt.txt \
	"CalDAV/sharing-calendars.xml"

RESULT=$?

tail "$/../../../../../data-autotest/owncloud.log"

exit $RESULT