summary refs log tree commit diff
path: root/lisc/tools/regress.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/tools/regress.sh')
-rwxr-xr-xlisc/tools/regress.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/lisc/tools/regress.sh b/lisc/tools/regress.sh
deleted file mode 100755
index c1b90b2..0000000
--- a/lisc/tools/regress.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-for t in test/*
-do
-	printf "Test $t ... "
-
-	./lisc   $t >/tmp/out.0 2>&1
-	./lisc.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