These tests send output to stdout or stderr even without -v. This is distracting because unexpected output flashing by during make test usually indicates problems Shut them up uncoditionally: In both cases, the output was due to intermediate commands in between the actual test cases. Signed-off-by: Michael J Gruber <git@xxxxxxxxxxxxxxxxxxxx> --- t/t1304-default-acl.sh | 2 +- t/t2007-checkout-symlink.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/t1304-default-acl.sh b/t/t1304-default-acl.sh index 055ad00..b26d2e8 100755 --- a/t/t1304-default-acl.sh +++ b/t/t1304-default-acl.sh @@ -15,7 +15,7 @@ umask 077 # is a good candidate: exists on all unices, and it has permission # anyway, so we don't create a security hole running the testsuite. -if ! setfacl -m u:root:rwx .; then +if ! setfacl -m u:root:rwx . 2>/dev/null; then say "Skipping ACL tests: unable to use setfacl" test_done fi diff --git a/t/t2007-checkout-symlink.sh b/t/t2007-checkout-symlink.sh index 20f3343..fc5db05 100755 --- a/t/t2007-checkout-symlink.sh +++ b/t/t2007-checkout-symlink.sh @@ -45,7 +45,7 @@ test_expect_success 'switch from symlink to dir' ' ' rm -fr frotz xyzzy nitfol && -git checkout -f master || exit +git checkout -q -f master || exit test_expect_success 'switch from dir to symlink' ' -- 1.7.1.rc1.248.gcefbb -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html