From: Pieter Praet Date: Wed, 18 Jan 2012 12:19:41 +0000 (+0100) Subject: test: always report missing prereqs, independent of `--verbose' option X-Git-Tag: debian/0.12_rc1-1~56 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=e3fb62f59b7cf93c818f382a62c37eea2d1b4f74 test: always report missing prereqs, independent of `--verbose' option When tests are skipped due to missing prereqs, those prereqs are only displayed when running with the `--verbose' option. This is essential information when troubleshooting, so always send to stdout. --- diff --git a/test/test-lib.sh b/test/test-lib.sh index 0174e93f..063a2b27 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -702,8 +702,8 @@ test_skip () { test_check_missing_external_prereqs_ () { if test -n "$test_subtest_missing_external_prereqs_"; then - say_color skip >&3 "missing prerequisites:" - echo "$test_subtest_missing_external_prereqs_" >&3 + say_color skip >&1 "missing prerequisites:" + echo "$test_subtest_missing_external_prereqs_" >&1 test_report_skip_ "$@" else false