X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=t%2Ft1302-repo-version.sh;h=d60c042ce88b5306b8c32f6b3d928338f6720168;hb=0a23331aa6bac1447d7983111d9c3efbea970cb3;hp=ce4cff13bbced58add641a463321f36673121fd7;hpb=6da2d14c8bd4105bd123dd82840915197f4c3442;p=thirdparty%2Fgit.git diff --git a/t/t1302-repo-version.sh b/t/t1302-repo-version.sh index ce4cff13bb..d60c042ce8 100755 --- a/t/t1302-repo-version.sh +++ b/t/t1302-repo-version.sh @@ -8,6 +8,10 @@ test_description='Test repository version check' . ./test-lib.sh test_expect_success 'setup' ' + test_oid_cache <<-\EOF && + version sha1:0 + version sha256:1 + EOF cat >test.patch <<-\EOF && diff --git a/test.txt b/test.txt new file mode 100644 @@ -23,7 +27,7 @@ test_expect_success 'setup' ' ' test_expect_success 'gitdir selection on normal repos' ' - echo 0 >expect && + echo $(test_oid version) >expect && git config core.repositoryformatversion >actual && git -C test config core.repositoryformatversion >actual2 && test_cmp expect actual &&