This commit is contained in:
Thomas Levine 2016-02-29 01:40:13 +00:00
parent 694bc293c8
commit 1752d19e35
1 changed files with 7 additions and 0 deletions

View File

@ -1,7 +1,14 @@
#!/bin/sh
set -e
tmp=$(mktemp -d)
testdir=$tmp/tests
mkdir -p $testdir
set +e
../../urchin -n -t $testdir
e=$?
set -e
rm -R $tmp
exit $e