summaryrefslogtreecommitdiff
path: root/test/run-lang-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/run-lang-tests.sh')
-rwxr-xr-xtest/run-lang-tests.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/run-lang-tests.sh b/test/run-lang-tests.sh
new file mode 100755
index 0000000..5cc68b3
--- /dev/null
+++ b/test/run-lang-tests.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+cd "$(dirname $0)"
+EXECUTABLE="$PWD/../simulator"
+
+echo $PWD
+
+for src in invalid-hence/*.hence ; do
+ outfile="$(mktemp)"
+ "$EXECUTABLE" "$src" 2> "$outfile"
+ if diff "$src.expected" "$outfile" ; then
+ echo -ne '[\e[0;32mPASS\e[0m]'
+ rm "$outfile"
+ else
+ echo -ne '[\e[1;31mFAIL\e[0m]'
+ fi
+ echo " $src"
+done
+
+#for src in valid-hence/*.hence ; do
+# outfile="$(mktemp)"
+# "$EXECUTABLE" "$src" > "$outfile"
+# if diff "$src.expected" "$outfile" >/dev/null ; then
+# echo "$src: PASS"
+# else
+# echo "$src: FAIL"
+# fi
+#done