diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-26 15:54:43 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-26 15:54:43 -0500 |
commit | a9a723e0089e39829dfc22d006c6c6b0873f1772 (patch) | |
tree | 5fecaa77dc30cd348ad49282428f40d03bac2099 /lisc | |
parent | ef5ae515a0fbd5bcd6587767e00a802a049e687e (diff) | |
download | roux-a9a723e0089e39829dfc22d006c6c6b0873f1772.tar.gz |
also catch stderr
Diffstat (limited to 'lisc')
-rwxr-xr-x | lisc/tools/regress.sh | 4 |
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 |