mirror of
https://github.com/git/git.git
synced 2024-11-30 13:33:44 +08:00
fba95dad6a
There are a bunch of tests which do not have any leaks: - t0411: Introduced via5c5a4a1c05
(t0411: add tests for cloning from partial repo, 2024-01-28), passes since its inception. - t0610: Introduced via57db2a094d
(refs: introduce reftable backend, 2024-02-07), passes since its inception. - t2405: Passes since6741e917de
(repository: avoid leaking `fsmonitor` data, 2024-04-12). - t7423: Introduced viab20c10fd9b
(t7423: add tests for symlinked submodule directories, 2024-01-28), passes sincee8d0608944
(submodule: require the submodule path to contain directories only, 2024-03-26). The fix is not obviously related, but probably works because we now die early in many code paths. - t9xxx: All of these are exercising CVS-related tooling and pass since at least Git v2.40. It's likely that these pass for a long time already, but nobody ever noticed because Git developers do not tend to have CVS on their machines. Mark all of these tests as passing. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
90 lines
2.1 KiB
Bash
Executable File
90 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Description of the files in the repository:
|
|
#
|
|
# imported-once.txt:
|
|
#
|
|
# Imported once. 1.1 and 1.1.1.1 should be identical.
|
|
#
|
|
# imported-twice.txt:
|
|
#
|
|
# Imported twice. HEAD should reflect the contents of the
|
|
# second import (i.e., have the same contents as 1.1.1.2).
|
|
#
|
|
# imported-modified.txt:
|
|
#
|
|
# Imported, then modified on HEAD. HEAD should reflect the
|
|
# modification.
|
|
#
|
|
# imported-modified-imported.txt:
|
|
#
|
|
# Imported, then modified on HEAD, then imported again.
|
|
#
|
|
# added-imported.txt,v:
|
|
#
|
|
# Added with 'cvs add' to create 1.1, then imported with
|
|
# completely different contents to create 1.1.1.1, therefore the
|
|
# vendor branch was never the default branch.
|
|
#
|
|
# imported-anonymously.txt:
|
|
#
|
|
# Like imported-twice.txt, but with a vendor branch whose branch
|
|
# tag has been removed.
|
|
|
|
test_description='git cvsimport handling of vendor branches'
|
|
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
|
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
|
. ./lib-cvs.sh
|
|
|
|
setup_cvs_test_repository t9601
|
|
|
|
test_expect_success PERL 'import a module with a vendor branch' '
|
|
|
|
git cvsimport -C module-git module
|
|
|
|
'
|
|
|
|
test_expect_success PERL 'check HEAD out of cvs repository' 'test_cvs_co main'
|
|
|
|
test_expect_success PERL 'check main out of git repository' 'test_git_co main'
|
|
|
|
test_expect_success PERL 'check a file that was imported once' '
|
|
|
|
test_cmp_branch_file main imported-once.txt
|
|
|
|
'
|
|
|
|
test_expect_failure PERL 'check a file that was imported twice' '
|
|
|
|
test_cmp_branch_file main imported-twice.txt
|
|
|
|
'
|
|
|
|
test_expect_success PERL 'check a file that was imported then modified on HEAD' '
|
|
|
|
test_cmp_branch_file main imported-modified.txt
|
|
|
|
'
|
|
|
|
test_expect_success PERL 'check a file that was imported, modified, then imported again' '
|
|
|
|
test_cmp_branch_file main imported-modified-imported.txt
|
|
|
|
'
|
|
|
|
test_expect_success PERL 'check a file that was added to HEAD then imported' '
|
|
|
|
test_cmp_branch_file main added-imported.txt
|
|
|
|
'
|
|
|
|
test_expect_success PERL 'a vendor branch whose tag has been removed' '
|
|
|
|
test_cmp_branch_file main imported-anonymously.txt
|
|
|
|
'
|
|
|
|
test_done
|