diff options
author | Vincent Ambo <mail@tazj.in> | 2021-09-21T10·03+0300 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-09-21T11·29+0300 |
commit | 43b1791ec601732ac31195df96781a848360a9ac (patch) | |
tree | daae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/t9302-fast-import-unpack-limit.sh | |
parent | 2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (diff) |
chore(3p/git): Unvendor git and track patches instead r/2903
This was vendored a long time ago under the expectation that keeping it in sync with cgit would be easier this way, but it has proven not to be a big issue. On the other hand, a vendored copy of git is an annoying maintenance burden. It is much easier to rebase the single (dottime) patch that we have. This removes the vendored copy of git and instead passes the git source code to cgit via `pkgs.srcOnly`, which includes the applied patch so that cgit can continue rendering dottime. Change-Id: If31f62dea7ce688fd1b9050204e9378019775f2b
Diffstat (limited to 'third_party/git/t/t9302-fast-import-unpack-limit.sh')
-rwxr-xr-x | third_party/git/t/t9302-fast-import-unpack-limit.sh | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/third_party/git/t/t9302-fast-import-unpack-limit.sh b/third_party/git/t/t9302-fast-import-unpack-limit.sh deleted file mode 100755 index bb1c39cfcc96..000000000000 --- a/third_party/git/t/t9302-fast-import-unpack-limit.sh +++ /dev/null @@ -1,105 +0,0 @@ -#!/bin/sh -test_description='test git fast-import unpack limit' -. ./test-lib.sh - -test_expect_success 'create loose objects on import' ' - test_tick && - cat >input <<-INPUT_END && - commit refs/heads/master - committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE - data <<COMMIT - initial - COMMIT - - done - INPUT_END - - git -c fastimport.unpackLimit=2 fast-import --done <input && - git fsck --no-progress && - test $(find .git/objects/?? -type f | wc -l) -eq 2 && - test $(find .git/objects/pack -type f | wc -l) -eq 0 -' - -test_expect_success 'bigger packs are preserved' ' - test_tick && - cat >input <<-INPUT_END && - commit refs/heads/master - committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE - data <<COMMIT - incremental should create a pack - COMMIT - from refs/heads/master^0 - - commit refs/heads/branch - committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE - data <<COMMIT - branch - COMMIT - - done - INPUT_END - - git -c fastimport.unpackLimit=2 fast-import --done <input && - git fsck --no-progress && - test $(find .git/objects/?? -type f | wc -l) -eq 2 && - test $(find .git/objects/pack -type f | wc -l) -eq 2 -' - -test_expect_success 'lookups after checkpoint works' ' - hello_id=$(echo hello | git hash-object --stdin -t blob) && - id="$GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE" && - before=$(git rev-parse refs/heads/master^0) && - ( - cat <<-INPUT_END && - blob - mark :1 - data 6 - hello - - commit refs/heads/master - mark :2 - committer $id - data <<COMMIT - checkpoint after this - COMMIT - from refs/heads/master^0 - M 100644 :1 hello - - # pre-checkpoint - cat-blob :1 - cat-blob $hello_id - checkpoint - # post-checkpoint - cat-blob :1 - cat-blob $hello_id - INPUT_END - - n=0 && - from=$before && - while test x"$from" = x"$before" - do - if test $n -gt 30 - then - echo >&2 "checkpoint did not update branch" && - exit 1 - else - n=$(($n + 1)) - fi && - sleep 1 && - from=$(git rev-parse refs/heads/master^0) - done && - cat <<-INPUT_END && - commit refs/heads/master - committer $id - data <<COMMIT - make sure from "unpacked sha1 reference" works, too - COMMIT - from $from - INPUT_END - echo done - ) | git -c fastimport.unpackLimit=100 fast-import --done && - test $(find .git/objects/?? -type f | wc -l) -eq 6 && - test $(find .git/objects/pack -type f | wc -l) -eq 2 -' - -test_done |