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