summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/wce
blob: 39aea5724f2bcdfacd484da88ec28cea202b5421 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
echo -n "Testing errors..."
./asy -noautoplain -debug errortest 2> errors.temp
result=`diff errors.temp errors`
if [ "$result" = "" ]; then
echo PASSED.
else
echo FAILED.
echo "$result"
exit 1
fi