This commit is contained in:
Thomas Levine 2016-02-29 01:40:13 +00:00
parent 694bc293c8
commit 1752d19e35

View File

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