summary refs log tree commit diff
path: root/src/tools/regress.sh
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-27 18:17:08 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-27 18:17:08 -0400
commitda640c5a467bfdf7b3bbced52fc13a28fd8b37bd (patch)
treecf5a4af994ac8b8f7357bbf3414c4179f94321ad /src/tools/regress.sh
parente38c61d95fccd208e13dd14a31a567c3d431677a (diff)
downloadroux-da640c5a467bfdf7b3bbced52fc13a28fd8b37bd.tar.gz
move tools to the root
Diffstat (limited to 'src/tools/regress.sh')
-rwxr-xr-xsrc/tools/regress.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/tools/regress.sh b/src/tools/regress.sh
deleted file mode 100755
index 4106b00..0000000
--- a/src/tools/regress.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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