diff options
author | P. J. McDermott <pjm@nac.net> | 2012-09-09 20:54:15 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-09-09 20:54:15 (EDT) |
commit | a0b738d81b66f2911ce2461ce9788f2a689f0df7 (patch) | |
tree | 0bc19a27d7e8cdafaca1a49e59e31048e2be7297 /tests | |
parent | 1a16fadea0001294d9bcbbf0249ae0ac4fac4d7a (diff) |
Collect test output on STDERR.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.in b/tests/Makefile.in index dadf382..71c077d 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -29,7 +29,7 @@ TESTS = deps test: @all=0; failed=0; \ for test in $(TESTS); do \ - out="$$($(SH) "$${test}.sh")"; \ + out="$$($(SH) "$${test}.sh" 2>&1)"; \ if [ $${?} -eq 0 ]; then \ printf 'PASS: %s\n' "$${test}"; \ else \ |