aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Pieter Praet <pieter@praet.org>2012-01-18 13:19:41 +0100
committerGravatar David Bremner <bremner@debian.org>2012-02-20 23:24:20 -0400
commite3fb62f59b7cf93c818f382a62c37eea2d1b4f74 (patch)
treed7e5424bd34317db584dd04711592e4dfd07f5b8 /test
parent311e8f6c4562298b4e826ce131597e085ece69d3 (diff)
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.
Diffstat (limited to 'test')
-rw-r--r--test/test-lib.sh4
1 files changed, 2 insertions, 2 deletions
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