[PATCH 3/4] test: fix spurious output from missing external binaries functions
Dmitry Kurochkin
dmitry.kurochkin at gmail.com
Mon Nov 28 14:41:06 PST 2011
The grep(1) command used in the fake binary functions was missing the
quiet option.
---
test/test-lib.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/test/test-lib.sh b/test/test-lib.sh
index 9dcb2d2..2861d88 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -556,7 +556,7 @@ test_declare_external_prereq () {
hash $binary 2>/dev/null || eval "
test_missing_external_prereq_${binary}_=t
$binary () {
- echo -n \"\$test_subtest_missing_external_prereqs_\" | grep -e \" $name \" ||
+ echo -n \"\$test_subtest_missing_external_prereqs_\" | grep -qe \" $name \" ||
test_subtest_missing_external_prereqs_=\"\$test_subtest_missing_external_prereqs_ $name\"
false
}"
--
1.7.7.3
More information about the notmuch
mailing list