]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t6416-recursive-corner-cases.sh
t64xx: convert 'test_create_repo' to 'git init'
[thirdparty/git.git] / t / t6416-recursive-corner-cases.sh
index 690c8482b13a3763b223be19799ce22197cd383c..17b54d625d0e468047377c378faae25c50633c9b 100755 (executable)
@@ -19,7 +19,7 @@ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 #
 
 test_expect_success 'setup basic criss-cross + rename with no modifications' '
-       test_create_repo basic-rename &&
+       git init basic-rename &&
        (
                cd basic-rename &&
 
@@ -85,7 +85,7 @@ test_expect_success 'merge simple rename+criss-cross with no modifications' '
 #
 
 test_expect_success 'setup criss-cross + rename merges with basic modification' '
-       test_create_repo rename-modify &&
+       git init rename-modify &&
        (
                cd rename-modify &&
 
@@ -160,7 +160,7 @@ test_expect_success 'merge criss-cross + rename merges with basic modification'
 #
 
 test_expect_success 'setup differently handled merges of rename/add conflict' '
-       test_create_repo rename-add &&
+       git init rename-add &&
        (
                cd rename-add &&
 
@@ -324,7 +324,7 @@ test_expect_success 'git detects differently handled merges conflict, swapped' '
 # Merging commits D & E should result in modify/delete conflict.
 
 test_expect_success 'setup criss-cross + modify/delete resolved differently' '
-       test_create_repo modify-delete &&
+       git init modify-delete &&
        (
                cd modify-delete &&
 
@@ -499,7 +499,7 @@ test_expect_success 'git detects conflict merging criss-cross+modify/delete, rev
 #
 
 test_expect_success 'setup differently handled merges of directory/file conflict' '
-       test_create_repo directory-file &&
+       git init directory-file &&
        (
                cd directory-file &&
 
@@ -867,7 +867,7 @@ test_expect_failure 'merge of D2 & E4 merges a2s & reports conflict for a/file'
 # but that may cancel out at the final merge stage".
 
 test_expect_success 'setup rename/rename(1to2)/modify followed by what looks like rename/rename(2to1)/modify' '
-       test_create_repo rename-squared-squared &&
+       git init rename-squared-squared &&
        (
                cd rename-squared-squared &&
 
@@ -944,7 +944,7 @@ test_expect_success 'handle rename/rename(1to2)/modify followed by what looks li
 # content merge handled.
 
 test_expect_success 'setup criss-cross + rename/rename/add-source + modify/modify' '
-       test_create_repo rename-rename-add-source &&
+       git init rename-rename-add-source &&
        (
                cd rename-rename-add-source &&
 
@@ -1032,7 +1032,7 @@ test_expect_failure 'detect rename/rename/add-source for virtual merge-base' '
 # base of B & C needs to not delete B:c for that to work, though...
 
 test_expect_success 'setup criss-cross+rename/rename/add-dest + simple modify' '
-       test_create_repo rename-rename-add-dest &&
+       git init rename-rename-add-dest &&
        (
                cd rename-rename-add-dest &&
 
@@ -1111,7 +1111,7 @@ test_expect_success 'virtual merge base handles rename/rename(1to2)/add-dest' '
 # git detect it?
 
 test_expect_success 'setup symlink modify/modify' '
-       test_create_repo symlink-modify-modify &&
+       git init symlink-modify-modify &&
        (
                cd symlink-modify-modify &&
 
@@ -1178,7 +1178,7 @@ test_expect_merge_algorithm failure success 'check symlink modify/modify' '
 # git detect it?
 
 test_expect_success 'setup symlink add/add' '
-       test_create_repo symlink-add-add &&
+       git init symlink-add-add &&
        (
                cd symlink-add-add &&
 
@@ -1244,11 +1244,11 @@ test_expect_merge_algorithm failure success 'check symlink add/add' '
 # git detect it?
 
 test_expect_success 'setup submodule modify/modify' '
-       test_create_repo submodule-modify-modify &&
+       git init submodule-modify-modify &&
        (
                cd submodule-modify-modify &&
 
-               test_create_repo submod &&
+               git init submod &&
                (
                        cd submod &&
                        touch file-A &&
@@ -1332,11 +1332,11 @@ test_expect_merge_algorithm failure success 'check submodule modify/modify' '
 # git detect it?
 
 test_expect_success 'setup submodule add/add' '
-       test_create_repo submodule-add-add &&
+       git init submodule-add-add &&
        (
                cd submodule-add-add &&
 
-               test_create_repo submod &&
+               git init submod &&
                (
                        cd submod &&
                        touch file-A &&
@@ -1419,11 +1419,11 @@ test_expect_merge_algorithm failure success 'check submodule add/add' '
 # This is an obvious add/add conflict for 'path'.  Can git detect it?
 
 test_expect_success 'setup conflicting entry types (submodule vs symlink)' '
-       test_create_repo submodule-symlink-add-add &&
+       git init submodule-symlink-add-add &&
        (
                cd submodule-symlink-add-add &&
 
-               test_create_repo path &&
+               git init path &&
                (
                        cd path &&
                        touch file-B &&
@@ -1494,7 +1494,7 @@ test_expect_merge_algorithm failure success 'check conflicting entry types (subm
 # This is an obvious add/add mode conflict.  Can git detect it?
 
 test_expect_success 'setup conflicting modes for regular file' '
-       test_create_repo regular-file-mode-conflict &&
+       git init regular-file-mode-conflict &&
        (
                cd regular-file-mode-conflict &&
 
@@ -1571,7 +1571,7 @@ test_expect_failure 'check conflicting modes for regular file' '
 #   to ensure that we handle it as well as practical.
 
 test_expect_success 'setup nested conflicts' '
-       test_create_repo nested_conflicts &&
+       git init nested_conflicts &&
        (
                cd nested_conflicts &&
 
@@ -1757,7 +1757,7 @@ test_expect_success 'check nested conflicts' '
 #   have three levels of conflict markers.  Can we distinguish all three?
 
 test_expect_success 'setup virtual merge base with nested conflicts' '
-       test_create_repo virtual_merge_base_has_nested_conflicts &&
+       git init virtual_merge_base_has_nested_conflicts &&
        (
                cd virtual_merge_base_has_nested_conflicts &&