From: Junio C Hamano Date: Thu, 31 Aug 2006 21:14:20 +0000 (-0700) Subject: t5710: fix two thinkos. X-Git-Tag: v1.4.3-rc1~147 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2c6d22df9f8a975c88fc9a93c4db8bb0bd116b74;p=git.git t5710: fix two thinkos. The intention of the test seems to be to build a long chain of clones that locally borrow objects from their parents and see the system give up dereferencing long chains. There were two problems: (1) it did not test the right repository; (2) it did not build a chain long enough to trigger the limitation. I do not think it is a good test to make sure the limitation the current implementation happens to have still exists, but that is a topic at a totally different level. At least this fixes the broken test. Signed-off-by: Junio C Hamano --- diff --git a/t/t5710-info-alternate.sh b/t/t5710-info-alternate.sh index 2e1b48a89..b9f6d9636 100755 --- a/t/t5710-info-alternate.sh +++ b/t/t5710-info-alternate.sh @@ -58,6 +58,8 @@ test_expect_failure 'creating too deep nesting' \ git clone -l -s D E && git clone -l -s E F && git clone -l -s F G && +git clone -l -s G H && +cd H && test_valid_repo' cd "$base_dir"