summary refs log tree commit diff
path: root/src/tools/regress.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/regress.sh')
-rwxr-xr-xsrc/tools/regress.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tools/regress.sh b/src/tools/regress.sh
new file mode 100755
index 0000000..4106b00
--- /dev/null
+++ b/src/tools/regress.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+for t in test/*
+do
+	printf "Test $t ... "
+
+	./qbe   $t >/tmp/out.0 2>&1
+	./qbe.1 $t >/tmp/out.1 2>&1
+
+	if diff /tmp/out.0 /tmp/out.1 > /dev/null
+	then
+		echo "OK"
+	else
+		echo "KO"
+		break
+	fi
+done