summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/wce
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/wce')
-rwxr-xr-xBuild/source/utils/asymptote/wce11
1 files changed, 11 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/wce b/Build/source/utils/asymptote/wce
new file mode 100755
index 00000000000..39aea5724f2
--- /dev/null
+++ b/Build/source/utils/asymptote/wce
@@ -0,0 +1,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