summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xlisc/tools/regress.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisc/tools/regress.sh b/lisc/tools/regress.sh
index cfc70f2..c1b90b2 100755
--- a/lisc/tools/regress.sh
+++ b/lisc/tools/regress.sh
@@ -4,8 +4,8 @@ for t in test/*
 do
 	printf "Test $t ... "
 
-	./lisc   $t 2>&1 > /tmp/out.0
-	./lisc.1 $t 2>&1 > /tmp/out.1
+	./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