2009-02-23 06:08:13 +01:00
|
|
|
#!/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'
|
|
|
|
. ./lib-cvs.sh
|
|
|
|
|
2010-08-16 18:25:01 +02:00
|
|
|
setup_cvs_test_repository t9601
|
2009-02-23 06:08:13 +01:00
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_success PERL 'import a module with a vendor branch' '
|
2009-02-23 06:08:13 +01:00
|
|
|
|
|
|
|
git cvsimport -C module-git module
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_success PERL 'check HEAD out of cvs repository' 'test_cvs_co master'
|
2009-02-23 06:08:13 +01:00
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_success PERL 'check master out of git repository' 'test_git_co master'
|
2009-02-23 06:08:13 +01:00
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_success PERL 'check a file that was imported once' '
|
2009-02-23 06:08:13 +01:00
|
|
|
|
|
|
|
test_cmp_branch_file master imported-once.txt
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_failure PERL 'check a file that was imported twice' '
|
2009-02-23 06:08:13 +01:00
|
|
|
|
|
|
|
test_cmp_branch_file master imported-twice.txt
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_success PERL 'check a file that was imported then modified on HEAD' '
|
2009-02-23 06:08:13 +01:00
|
|
|
|
|
|
|
test_cmp_branch_file master imported-modified.txt
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_success PERL 'check a file that was imported, modified, then imported again' '
|
2009-02-23 06:08:13 +01:00
|
|
|
|
|
|
|
test_cmp_branch_file master imported-modified-imported.txt
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_success PERL 'check a file that was added to HEAD then imported' '
|
2009-02-23 06:08:13 +01:00
|
|
|
|
|
|
|
test_cmp_branch_file master added-imported.txt
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2010-08-13 22:40:12 +02:00
|
|
|
test_expect_success PERL 'a vendor branch whose tag has been removed' '
|
2009-02-23 06:08:13 +01:00
|
|
|
|
|
|
|
test_cmp_branch_file master imported-anonymously.txt
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|