summary refs log tree commit diff
path: root/lisc/tools/regress.sh
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-26 15:54:43 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-26 15:54:43 -0500
commita9a723e0089e39829dfc22d006c6c6b0873f1772 (patch)
tree5fecaa77dc30cd348ad49282428f40d03bac2099 /lisc/tools/regress.sh
parentef5ae515a0fbd5bcd6587767e00a802a049e687e (diff)
downloadroux-a9a723e0089e39829dfc22d006c6c6b0873f1772.tar.gz
also catch stderr
Diffstat (limited to 'lisc/tools/regress.sh')
-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