mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
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.
This commit is contained in:
parent
311e8f6c45
commit
e3fb62f59b
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue