From a9a723e0089e39829dfc22d006c6c6b0873f1772 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Fri, 26 Feb 2016 15:54:43 -0500 Subject: also catch stderr --- lisc/tools/regress.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisc/tools/regress.sh') 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 -- cgit 1.4.1