15 lines
140 B
Bash
Executable File
15 lines
140 B
Bash
Executable File
#!/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
|