Brian Gernhardt <benji@xxxxxxxxxxxxxxxxxx> writes: > On Jun 22, 2007, at 10:50 AM, Brian Gernhardt wrote: > >> Tests 15 and 16 in script "t5516-fetch-push.sh" fails with "notice: >> HEAD points to an unborn branch (master)". Is this just bad tests >> or an actual failure? This is with current master >> (45fd8bd32dd68ce6b14a406d0abbd6f56490131c) on OS X. Can you check "cd t && sh -x t5516-fetch-push.sh -i -v"? I am suspecting that test "$( cd testrepo && git show-ref | wc -l )" = 1 may have an interesting effect when "wc -l" emits extra whitespaces. Does this fix it for you? diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh index 08d58e1..c0fa2ba 100755 --- a/t/t5516-fetch-push.sh +++ b/t/t5516-fetch-push.sh @@ -226,7 +226,7 @@ test_expect_success 'push with colon-less refspec (3)' ' git branch -f frotz master && git push testrepo frotz && check_push_result $the_commit heads/frotz && - test "$( cd testrepo && git show-ref | wc -l )" = 1 + test 1 = $(cd testrepo && git show-ref | wc -l) ' test_expect_success 'push with colon-less refspec (4)' ' @@ -239,7 +239,7 @@ test_expect_success 'push with colon-less refspec (4)' ' git tag -f frotz && git push testrepo frotz && check_push_result $the_commit tags/frotz && - test "$( cd testrepo && git show-ref | wc -l )" = 1 + test 1 = $(cd testrepo && git show-ref | wc -l) ' - 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