summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-04-14 09:55:41 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-04-14 09:55:41 +0200
commit944ec778e4bb30fed061b86d7859555c7a29fa6f (patch)
tree8f597b2d051a9cc99e73d595376fd7b29345b4e6
parentc5a1ec04cbd53df049b125a441a49d69b7dcd0f0 (diff)
downloadautomake-944ec778e4bb30fed061b86d7859555c7a29fa6f.tar.gz
parallel-tests: print error messages on stderr, not stdout
* lib/am/check.am ($(TEST_SUITE_LOG)): Be sure to print error messages on stderr, not on stdout. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rw-r--r--lib/am/check.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/am/check.am b/lib/am/check.am
index 404f13ca8..0ce064d37 100644
--- a/lib/am/check.am
+++ b/lib/am/check.am
@@ -170,9 +170,9 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
for i in $$redo_bases; do \
test -f $$i.trs && test -r $$i.trs \
- || { echo "$$errmsg $$i.trs"; st=1; }; \
+ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
test -f $$i.log && test -r $$i.log \
- || { echo "$$errmsg $$i.log"; st=1; }; \
+ || { echo "$$errmsg $$i.log" >&2; st=1; }; \
done; \
test $$st -eq 0 || exit 1; \
fi