2013-11-18 23:02:12 +00:00
|
|
|
#!/bin/bash
|
|
|
|
if [ $# -ne 2 ]; then
|
2013-11-20 00:47:47 +00:00
|
|
|
echo "Usage: test.sh [lean-executable-path] [file]"
|
2013-11-18 23:02:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
ulimit -s unlimited
|
2013-11-20 00:47:47 +00:00
|
|
|
LEAN=$1
|
2013-11-18 23:02:12 +00:00
|
|
|
f=$2
|
|
|
|
echo "-- testing $f"
|
2013-12-27 03:49:04 +00:00
|
|
|
if $LEAN extra.lua $f > $f.produced.out; then
|
2013-11-18 23:02:12 +00:00
|
|
|
echo "-- worked"
|
|
|
|
exit 0
|
|
|
|
else
|
2013-11-18 23:39:55 +00:00
|
|
|
echo "ERROR executing $f, produced output:"
|
|
|
|
cat $f.produced.out
|
2013-11-18 23:02:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|