about summary refs log tree commit diff
path: root/third_party/git/t/t6043-merge-rename-directories.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t6043-merge-rename-directories.sh')
-rwxr-xr-xthird_party/git/t/t6043-merge-rename-directories.sh574
1 files changed, 199 insertions, 375 deletions
diff --git a/third_party/git/t/t6043-merge-rename-directories.sh b/third_party/git/t/t6043-merge-rename-directories.sh
index 83792c5ef1..c966147d5d 100755
--- a/third_party/git/t/t6043-merge-rename-directories.sh
+++ b/third_party/git/t/t6043-merge-rename-directories.sh
@@ -38,7 +38,7 @@ test_description="recursive merge with directory renames"
 #   Commit B: z/{b,c,d,e/f}
 #   Expected: y/{b,c,d,e/f}
 
-test_setup_1a () {
+test_expect_success '1a-setup: Simple directory rename detection' '
 	test_create_repo 1a &&
 	(
 		cd 1a &&
@@ -67,10 +67,9 @@ test_setup_1a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '1a: Simple directory rename detection' '
-	test_setup_1a &&
+test_expect_success '1a-check: Simple directory rename detection' '
 	(
 		cd 1a &&
 
@@ -104,7 +103,7 @@ test_expect_success '1a: Simple directory rename detection' '
 #   Commit B: y/{b,c,d}
 #   Expected: y/{b,c,d,e}
 
-test_setup_1b () {
+test_expect_success '1b-setup: Merge a directory with another' '
 	test_create_repo 1b &&
 	(
 		cd 1b &&
@@ -135,10 +134,9 @@ test_setup_1b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '1b: Merge a directory with another' '
-	test_setup_1b &&
+test_expect_success '1b-check: Merge a directory with another' '
 	(
 		cd 1b &&
 
@@ -167,7 +165,7 @@ test_expect_success '1b: Merge a directory with another' '
 #   Commit B: z/{b,c,d}
 #   Expected: y/{b,c,d}  (because x/d -> z/d -> y/d)
 
-test_setup_1c () {
+test_expect_success '1c-setup: Transitive renaming' '
 	test_create_repo 1c &&
 	(
 		cd 1c &&
@@ -195,10 +193,9 @@ test_setup_1c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '1c: Transitive renaming' '
-	test_setup_1c &&
+test_expect_success '1c-check: Transitive renaming' '
 	(
 		cd 1c &&
 
@@ -230,7 +227,7 @@ test_expect_success '1c: Transitive renaming' '
 #   Note: y/m & z/n should definitely move into x.  By the same token, both
 #         y/wham_1 & z/wham_2 should too...giving us a conflict.
 
-test_setup_1d () {
+test_expect_success '1d-setup: Directory renames cause a rename/rename(2to1) conflict' '
 	test_create_repo 1d &&
 	(
 		cd 1d &&
@@ -265,10 +262,9 @@ test_setup_1d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '1d: Directory renames cause a rename/rename(2to1) conflict' '
-	test_setup_1d &&
+test_expect_success '1d-check: Directory renames cause a rename/rename(2to1) conflict' '
 	(
 		cd 1d &&
 
@@ -317,7 +313,7 @@ test_expect_success '1d: Directory renames cause a rename/rename(2to1) conflict'
 #   Commit B: z/{oldb,oldc,d}
 #   Expected: y/{newb,newc,d}
 
-test_setup_1e () {
+test_expect_success '1e-setup: Renamed directory, with all files being renamed too' '
 	test_create_repo 1e &&
 	(
 		cd 1e &&
@@ -346,10 +342,9 @@ test_setup_1e () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '1e: Renamed directory, with all files being renamed too' '
-	test_setup_1e &&
+test_expect_success '1e-check: Renamed directory, with all files being renamed too' '
 	(
 		cd 1e &&
 
@@ -376,7 +371,7 @@ test_expect_success '1e: Renamed directory, with all files being renamed too' '
 #   Commit B: y/{b,c}, x/{d,e,f}
 #   Expected: y/{b,c}, x/{d,e,f,g}
 
-test_setup_1f () {
+test_expect_success '1f-setup: Split a directory into two other directories' '
 	test_create_repo 1f &&
 	(
 		cd 1f &&
@@ -413,10 +408,9 @@ test_setup_1f () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '1f: Split a directory into two other directories' '
-	test_setup_1f &&
+test_expect_success '1f-check: Split a directory into two other directories' '
 	(
 		cd 1f &&
 
@@ -465,7 +459,7 @@ test_expect_success '1f: Split a directory into two other directories' '
 #   Commit A: y/b, w/c
 #   Commit B: z/{b,c,d}
 #   Expected: y/b, w/c, z/d, with warning about z/ -> (y/ vs. w/) conflict
-test_setup_2a () {
+test_expect_success '2a-setup: Directory split into two on one side, with equal numbers of paths' '
 	test_create_repo 2a &&
 	(
 		cd 2a &&
@@ -495,10 +489,9 @@ test_setup_2a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '2a: Directory split into two on one side, with equal numbers of paths' '
-	test_setup_2a &&
+test_expect_success '2a-check: Directory split into two on one side, with equal numbers of paths' '
 	(
 		cd 2a &&
 
@@ -527,7 +520,7 @@ test_expect_success '2a: Directory split into two on one side, with equal number
 #   Commit A: y/b, w/c
 #   Commit B: z/{b,c}, x/d
 #   Expected: y/b, w/c, x/d; No warning about z/ -> (y/ vs. w/) conflict
-test_setup_2b () {
+test_expect_success '2b-setup: Directory split into two on one side, with equal numbers of paths' '
 	test_create_repo 2b &&
 	(
 		cd 2b &&
@@ -558,10 +551,9 @@ test_setup_2b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '2b: Directory split into two on one side, with equal numbers of paths' '
-	test_setup_2b &&
+test_expect_success '2b-check: Directory split into two on one side, with equal numbers of paths' '
 	(
 		cd 2b &&
 
@@ -609,7 +601,7 @@ test_expect_success '2b: Directory split into two on one side, with equal number
 #   Commit A: z/{b,c,d} (no change)
 #   Commit B: y/{b,c}, x/d
 #   Expected: y/{b,c}, x/d
-test_setup_3a () {
+test_expect_success '3a-setup: Avoid implicit rename if involved as source on other side' '
 	test_create_repo 3a &&
 	(
 		cd 3a &&
@@ -640,10 +632,9 @@ test_setup_3a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '3a: Avoid implicit rename if involved as source on other side' '
-	test_setup_3a &&
+test_expect_success '3a-check: Avoid implicit rename if involved as source on other side' '
 	(
 		cd 3a &&
 
@@ -673,7 +664,7 @@ test_expect_success '3a: Avoid implicit rename if involved as source on other si
 #         get it involved in directory rename detection.  If it were, we might
 #         end up with CONFLICT:(z/d -> y/d vs. x/d vs. w/d), i.e. a
 #         rename/rename/rename(1to3) conflict, which is just weird.
-test_setup_3b () {
+test_expect_success '3b-setup: Avoid implicit rename if involved as source on current side' '
 	test_create_repo 3b &&
 	(
 		cd 3b &&
@@ -706,10 +697,9 @@ test_setup_3b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '3b: Avoid implicit rename if involved as source on current side' '
-	test_setup_3b &&
+test_expect_success '3b-check: Avoid implicit rename if involved as source on current side' '
 	(
 		cd 3b &&
 
@@ -754,7 +744,7 @@ test_expect_success '3b: Avoid implicit rename if involved as source on current
 #
 # What if we were to attempt to do directory rename detection when someone
 # "mostly" moved a directory but still left some files around, or,
-# equivalently, fully renamed a directory in one commit and then recreated
+# equivalently, fully renamed a directory in one commmit and then recreated
 # that directory in a later commit adding some new files and then tried to
 # merge?
 #
@@ -796,7 +786,7 @@ test_expect_success '3b: Avoid implicit rename if involved as source on current
 #   Expected: y/{b,c,d}, z/{e,f}
 #   NOTE: Even though most files from z moved to y, we don't want f to follow.
 
-test_setup_4a () {
+test_expect_success '4a-setup: Directory split, with original directory still present' '
 	test_create_repo 4a &&
 	(
 		cd 4a &&
@@ -828,10 +818,9 @@ test_setup_4a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '4a: Directory split, with original directory still present' '
-	test_setup_4a &&
+test_expect_success '4a-check: Directory split, with original directory still present' '
 	(
 		cd 4a &&
 
@@ -885,7 +874,7 @@ test_expect_success '4a: Directory split, with original directory still present'
 #         of history, giving us no way to represent this conflict in the
 #         index.
 
-test_setup_5a () {
+test_expect_success '5a-setup: Merge directories, other side adds files to original and target' '
 	test_create_repo 5a &&
 	(
 		cd 5a &&
@@ -918,10 +907,9 @@ test_setup_5a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '5a: Merge directories, other side adds files to original and target' '
-	test_setup_5a &&
+test_expect_success '5a-check: Merge directories, other side adds files to original and target' '
 	(
 		cd 5a &&
 
@@ -953,14 +941,14 @@ test_expect_success '5a: Merge directories, other side adds files to original an
 #   Commit B: z/{b,c,d_1,e}, y/d_3
 #   Expected: y/{b,c,e}, CONFLICT(add/add: y/d_2 vs. y/d_3)
 #   NOTE: If z/d_1 in commit B were to be involved in dir rename detection, as
-#         we normally would since z/ is being renamed to y/, then this would be
+#         we normaly would since z/ is being renamed to y/, then this would be
 #         a rename/delete (z/d_1 -> y/d_1 vs. deleted) AND an add/add/add
 #         conflict of y/d_1 vs. y/d_2 vs. y/d_3.  Add/add/add is not
 #         representable in the index, so the existence of y/d_3 needs to
 #         cause us to bail on directory rename detection for that path, falling
 #         back to git behavior without the directory rename detection.
 
-test_setup_5b () {
+test_expect_success '5b-setup: Rename/delete in order to get add/add/add conflict' '
 	test_create_repo 5b &&
 	(
 		cd 5b &&
@@ -993,10 +981,9 @@ test_setup_5b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '5b: Rename/delete in order to get add/add/add conflict' '
-	test_setup_5b &&
+test_expect_success '5b-check: Rename/delete in order to get add/add/add conflict' '
 	(
 		cd 5b &&
 
@@ -1037,7 +1024,7 @@ test_expect_success '5b: Rename/delete in order to get add/add/add conflict' '
 #             y/d are y/d_2 and y/d_4.  We still do the move from z/e to y/e,
 #             though, because it doesn't have anything in the way.
 
-test_setup_5c () {
+test_expect_success '5c-setup: Transitive rename would cause rename/rename/rename/add/add/add' '
 	test_create_repo 5c &&
 	(
 		cd 5c &&
@@ -1074,10 +1061,9 @@ test_setup_5c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '5c: Transitive rename would cause rename/rename/rename/add/add/add' '
-	test_setup_5c &&
+test_expect_success '5c-check: Transitive rename would cause rename/rename/rename/add/add/add' '
 	(
 		cd 5c &&
 
@@ -1127,7 +1113,7 @@ test_expect_success '5c: Transitive rename would cause rename/rename/rename/add/
 #         detection for z/d_2, but that doesn't prevent us from applying the
 #         directory rename detection for z/f -> y/f.
 
-test_setup_5d () {
+test_expect_success '5d-setup: Directory/file/file conflict due to directory rename' '
 	test_create_repo 5d &&
 	(
 		cd 5d &&
@@ -1159,10 +1145,9 @@ test_setup_5d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '5d: Directory/file/file conflict due to directory rename' '
-	test_setup_5d &&
+test_expect_success '5d-check: Directory/file/file conflict due to directory rename' '
 	(
 		cd 5d &&
 
@@ -1220,7 +1205,7 @@ test_expect_success '5d: Directory/file/file conflict due to directory rename' '
 #         them under y/ doesn't accidentally catch z/d and make it look like
 #         it is also involved in a rename/delete conflict.
 
-test_setup_6a () {
+test_expect_success '6a-setup: Tricky rename/delete' '
 	test_create_repo 6a &&
 	(
 		cd 6a &&
@@ -1250,10 +1235,9 @@ test_setup_6a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '6a: Tricky rename/delete' '
-	test_setup_6a &&
+test_expect_success '6a-check: Tricky rename/delete' '
 	(
 		cd 6a &&
 
@@ -1287,7 +1271,7 @@ test_expect_success '6a: Tricky rename/delete' '
 #         but B did that rename and still decided to put the file into z/,
 #         so we probably shouldn't apply directory rename detection for it.
 
-test_setup_6b () {
+test_expect_success '6b-setup: Same rename done on both sides' '
 	test_create_repo 6b &&
 	(
 		cd 6b &&
@@ -1316,10 +1300,9 @@ test_setup_6b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '6b: Same rename done on both sides' '
-	test_setup_6b &&
+test_expect_success '6b-check: Same rename done on both sides' '
 	(
 		cd 6b &&
 
@@ -1351,7 +1334,7 @@ test_expect_success '6b: Same rename done on both sides' '
 #   NOTE: Seems obvious, but just checking that the implementation doesn't
 #         "accidentally detect a rename" and give us y/{b,c,d}.
 
-test_setup_6c () {
+test_expect_success '6c-setup: Rename only done on same side' '
 	test_create_repo 6c &&
 	(
 		cd 6c &&
@@ -1379,10 +1362,9 @@ test_setup_6c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '6c: Rename only done on same side' '
-	test_setup_6c &&
+test_expect_success '6c-check: Rename only done on same side' '
 	(
 		cd 6c &&
 
@@ -1414,7 +1396,7 @@ test_expect_success '6c: Rename only done on same side' '
 #   NOTE: Again, this seems obvious but just checking that the implementation
 #         doesn't "accidentally detect a rename" and give us y/{b,c,d}.
 
-test_setup_6d () {
+test_expect_success '6d-setup: We do not always want transitive renaming' '
 	test_create_repo 6d &&
 	(
 		cd 6d &&
@@ -1442,10 +1424,9 @@ test_setup_6d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '6d: We do not always want transitive renaming' '
-	test_setup_6d &&
+test_expect_success '6d-check: We do not always want transitive renaming' '
 	(
 		cd 6d &&
 
@@ -1477,7 +1458,7 @@ test_expect_success '6d: We do not always want transitive renaming' '
 #         doesn't "accidentally detect a rename" and give us y/{b,c} +
 #         add/add conflict on y/d_1 vs y/d_2.
 
-test_setup_6e () {
+test_expect_success '6e-setup: Add/add from one side' '
 	test_create_repo 6e &&
 	(
 		cd 6e &&
@@ -1506,10 +1487,9 @@ test_setup_6e () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '6e: Add/add from one side' '
-	test_setup_6e &&
+test_expect_success '6e-check: Add/add from one side' '
 	(
 		cd 6e &&
 
@@ -1572,7 +1552,7 @@ test_expect_success '6e: Add/add from one side' '
 #   Expected: y/d, CONFLICT(rename/rename for both z/b and z/c)
 #   NOTE: There's a rename of z/ here, y/ has more renames, so z/d -> y/d.
 
-test_setup_7a () {
+test_expect_success '7a-setup: rename-dir vs. rename-dir (NOT split evenly) PLUS add-other-file' '
 	test_create_repo 7a &&
 	(
 		cd 7a &&
@@ -1603,10 +1583,9 @@ test_setup_7a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '7a: rename-dir vs. rename-dir (NOT split evenly) PLUS add-other-file' '
-	test_setup_7a &&
+test_expect_success '7a-check: rename-dir vs. rename-dir (NOT split evenly) PLUS add-other-file' '
 	(
 		cd 7a &&
 
@@ -1644,7 +1623,7 @@ test_expect_success '7a: rename-dir vs. rename-dir (NOT split evenly) PLUS add-o
 #   Commit B: z/{b,c,d_1},        w/d_2
 #   Expected: y/{b,c}, CONFLICT(rename/rename(2to1): x/d_1, w/d_2 -> y_d)
 
-test_setup_7b () {
+test_expect_success '7b-setup: rename/rename(2to1), but only due to transitive rename' '
 	test_create_repo 7b &&
 	(
 		cd 7b &&
@@ -1676,10 +1655,9 @@ test_setup_7b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '7b: rename/rename(2to1), but only due to transitive rename' '
-	test_setup_7b &&
+test_expect_success '7b-check: rename/rename(2to1), but only due to transitive rename' '
 	(
 		cd 7b &&
 
@@ -1724,7 +1702,7 @@ test_expect_success '7b: rename/rename(2to1), but only due to transitive rename'
 #         neither CONFLICT(x/d -> w/d vs. z/d)
 #         nor CONFLiCT x/d -> w/d vs. y/d vs. z/d)
 
-test_setup_7c () {
+test_expect_success '7c-setup: rename/rename(1to...2or3); transitive rename may add complexity' '
 	test_create_repo 7c &&
 	(
 		cd 7c &&
@@ -1754,10 +1732,9 @@ test_setup_7c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '7c: rename/rename(1to...2or3); transitive rename may add complexity' '
-	test_setup_7c &&
+test_expect_success '7c-check: rename/rename(1to...2or3); transitive rename may add complexity' '
 	(
 		cd 7c &&
 
@@ -1789,7 +1766,7 @@ test_expect_success '7c: rename/rename(1to...2or3); transitive rename may add co
 #   Expected: y/{b,c}, CONFLICT(delete x/d vs rename to y/d)
 #   NOTE: z->y so NOT CONFLICT(delete x/d vs rename to z/d)
 
-test_setup_7d () {
+test_expect_success '7d-setup: transitive rename involved in rename/delete; how is it reported?' '
 	test_create_repo 7d &&
 	(
 		cd 7d &&
@@ -1819,10 +1796,9 @@ test_setup_7d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '7d: transitive rename involved in rename/delete; how is it reported?' '
-	test_setup_7d &&
+test_expect_success '7d-check: transitive rename involved in rename/delete; how is it reported?' '
 	(
 		cd 7d &&
 
@@ -1875,7 +1851,7 @@ test_expect_success '7d: transitive rename involved in rename/delete; how is it
 #         see testcases 9c and 9d for further discussion of this issue and
 #         how it's resolved.
 
-test_setup_7e () {
+test_expect_success '7e-setup: transitive rename in rename/delete AND dirs in the way' '
 	test_create_repo 7e &&
 	(
 		cd 7e &&
@@ -1910,10 +1886,9 @@ test_setup_7e () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '7e: transitive rename in rename/delete AND dirs in the way' '
-	test_setup_7e &&
+test_expect_success '7e-check: transitive rename in rename/delete AND dirs in the way' '
 	(
 		cd 7e &&
 
@@ -1970,7 +1945,7 @@ test_expect_success '7e: transitive rename in rename/delete AND dirs in the way'
 # simple rule from section 5 prevents me from handling this as optimally as
 # we potentially could.
 
-test_setup_8a () {
+test_expect_success '8a-setup: Dual-directory rename, one into the others way' '
 	test_create_repo 8a &&
 	(
 		cd 8a &&
@@ -2002,10 +1977,9 @@ test_setup_8a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '8a: Dual-directory rename, one into the others way' '
-	test_setup_8a &&
+test_expect_success '8a-check: Dual-directory rename, one into the others way' '
 	(
 		cd 8a &&
 
@@ -2049,7 +2023,7 @@ test_expect_success '8a: Dual-directory rename, one into the others way' '
 # making us fall back to pre-directory-rename-detection behavior for both
 # e_1 and e_2.
 
-test_setup_8b () {
+test_expect_success '8b-setup: Dual-directory rename, one into the others way, with conflicting filenames' '
 	test_create_repo 8b &&
 	(
 		cd 8b &&
@@ -2081,10 +2055,9 @@ test_setup_8b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '8b: Dual-directory rename, one into the others way, with conflicting filenames' '
-	test_setup_8b &&
+test_expect_success '8b-check: Dual-directory rename, one into the others way, with conflicting filenames' '
 	(
 		cd 8b &&
 
@@ -2116,14 +2089,14 @@ test_expect_success '8b: Dual-directory rename, one into the others way, with co
 #
 #   Note: It could easily be argued that the correct resolution here is
 #         y/{b,c,e}, CONFLICT(rename/delete: z/d -> y/d vs deleted)
-#         and that the modified version of d should be present in y/ after
+#         and that the modifed version of d should be present in y/ after
 #         the merge, just marked as conflicted.  Indeed, I previously did
 #         argue that.  But applying directory renames to the side of
 #         history where a file is merely modified results in spurious
 #         rename/rename(1to2) conflicts -- see testcase 9h.  See also
 #         notes in 8d.
 
-test_setup_8c () {
+test_expect_success '8c-setup: modify/delete or rename+modify/delete?' '
 	test_create_repo 8c &&
 	(
 		cd 8c &&
@@ -2154,10 +2127,9 @@ test_setup_8c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '8c: modify/delete or rename+modify/delete' '
-	test_setup_8c &&
+test_expect_success '8c-check: modify/delete or rename+modify/delete' '
 	(
 		cd 8c &&
 
@@ -2203,7 +2175,7 @@ test_expect_success '8c: modify/delete or rename+modify/delete' '
 #   during merging are supposed to be about opposite sides doing things
 #   differently.
 
-test_setup_8d () {
+test_expect_success '8d-setup: rename/delete...or not?' '
 	test_create_repo 8d &&
 	(
 		cd 8d &&
@@ -2232,10 +2204,9 @@ test_setup_8d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '8d: rename/delete...or not?' '
-	test_setup_8d &&
+test_expect_success '8d-check: rename/delete...or not?' '
 	(
 		cd 8d &&
 
@@ -2279,7 +2250,7 @@ test_expect_success '8d: rename/delete...or not?' '
 #        about the ramifications of doing that, I didn't know how to rule out
 #        that opening other weird edge and corner cases so I just punted.
 
-test_setup_8e () {
+test_expect_success '8e-setup: Both sides rename, one side adds to original directory' '
 	test_create_repo 8e &&
 	(
 		cd 8e &&
@@ -2308,10 +2279,9 @@ test_setup_8e () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '8e: Both sides rename, one side adds to original directory' '
-	test_setup_8e &&
+test_expect_success '8e-check: Both sides rename, one side adds to original directory' '
 	(
 		cd 8e &&
 
@@ -2363,7 +2333,7 @@ test_expect_success '8e: Both sides rename, one side adds to original directory'
 #         of which one had the most paths going to it.  A naive implementation
 #         of that could take the new file in commit B at z/i to x/w/i or x/i.
 
-test_setup_9a () {
+test_expect_success '9a-setup: Inner renamed directory within outer renamed directory' '
 	test_create_repo 9a &&
 	(
 		cd 9a &&
@@ -2396,10 +2366,9 @@ test_setup_9a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '9a: Inner renamed directory within outer renamed directory' '
-	test_setup_9a &&
+test_expect_success '9a-check: Inner renamed directory within outer renamed directory' '
 	(
 		cd 9a &&
 
@@ -2435,7 +2404,7 @@ test_expect_success '9a: Inner renamed directory within outer renamed directory'
 #   Commit B: z/{b,c,d_3}
 #   Expected: y/{b,c,d_merged}
 
-test_setup_9b () {
+test_expect_success '9b-setup: Transitive rename with content merge' '
 	test_create_repo 9b &&
 	(
 		cd 9b &&
@@ -2467,10 +2436,9 @@ test_setup_9b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '9b: Transitive rename with content merge' '
-	test_setup_9b &&
+test_expect_success '9b-check: Transitive rename with content merge' '
 	(
 		cd 9b &&
 
@@ -2523,7 +2491,7 @@ test_expect_success '9b: Transitive rename with content merge' '
 #         away, then ignore that particular rename from the other side of
 #         history for any implicit directory renames.
 
-test_setup_9c () {
+test_expect_success '9c-setup: Doubly transitive rename?' '
 	test_create_repo 9c &&
 	(
 		cd 9c &&
@@ -2558,10 +2526,9 @@ test_setup_9c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '9c: Doubly transitive rename?' '
-	test_setup_9c &&
+test_expect_success '9c-check: Doubly transitive rename?' '
 	(
 		cd 9c &&
 
@@ -2612,7 +2579,7 @@ test_expect_success '9c: Doubly transitive rename?' '
 #   simple rules that are consistent with what we need for all the other
 #   testcases and simplifies things for the user.
 
-test_setup_9d () {
+test_expect_success '9d-setup: N-way transitive rename?' '
 	test_create_repo 9d &&
 	(
 		cd 9d &&
@@ -2647,10 +2614,9 @@ test_setup_9d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '9d: N-way transitive rename?' '
-	test_setup_9d &&
+test_expect_success '9d-check: N-way transitive rename?' '
 	(
 		cd 9d &&
 
@@ -2687,7 +2653,7 @@ test_expect_success '9d: N-way transitive rename?' '
 #   Expected: combined/{a,b,c,d,e,f,g,h,i,j,k,l}, CONFLICT(Nto1) warnings,
 #             dir1/yo, dir2/yo, dir3/yo, dirN/yo
 
-test_setup_9e () {
+test_expect_success '9e-setup: N-to-1 whammo' '
 	test_create_repo 9e &&
 	(
 		cd 9e &&
@@ -2730,10 +2696,9 @@ test_setup_9e () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success C_LOCALE_OUTPUT '9e: N-to-1 whammo' '
-	test_setup_9e &&
+test_expect_success C_LOCALE_OUTPUT '9e-check: N-to-1 whammo' '
 	(
 		cd 9e &&
 
@@ -2780,7 +2745,7 @@ test_expect_success C_LOCALE_OUTPUT '9e: N-to-1 whammo' '
 #   Commit B: goal/{a,b}/$more_files, goal/c
 #   Expected: priority/{a,b}/$more_files, priority/c
 
-test_setup_9f () {
+test_expect_success '9f-setup: Renamed directory that only contained immediate subdirs' '
 	test_create_repo 9f &&
 	(
 		cd 9f &&
@@ -2809,10 +2774,9 @@ test_setup_9f () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '9f: Renamed directory that only contained immediate subdirs' '
-	test_setup_9f &&
+test_expect_success '9f-check: Renamed directory that only contained immediate subdirs' '
 	(
 		cd 9f &&
 
@@ -2845,7 +2809,7 @@ test_expect_success '9f: Renamed directory that only contained immediate subdirs
 #   Commit B: goal/{a,b}/$more_files, goal/c
 #   Expected: priority/{alpha,bravo}/$more_files, priority/c
 
-test_setup_9g () {
+test_expect_success '9g-setup: Renamed directory that only contained immediate subdirs, immediate subdirs renamed' '
 	test_create_repo 9g &&
 	(
 		cd 9g &&
@@ -2877,9 +2841,9 @@ test_setup_9g () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_failure '9g: Renamed directory that only contained immediate subdirs, immediate subdirs renamed' '
+test_expect_failure '9g-check: Renamed directory that only contained immediate subdirs, immediate subdirs renamed' '
 	(
 		cd 9g &&
 
@@ -2913,7 +2877,7 @@ test_expect_failure '9g: Renamed directory that only contained immediate subdirs
 #   Expected: y/{b,c}, x/d_2
 #   NOTE: If we applied the z/ -> y/ rename to z/d, then we'd end up with
 #         a rename/rename(1to2) conflict (z/d -> y/d vs. x/d)
-test_setup_9h () {
+test_expect_success '9h-setup: Avoid dir rename on merely modified path' '
 	test_create_repo 9h &&
 	(
 		cd 9h &&
@@ -2946,10 +2910,9 @@ test_setup_9h () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '9h: Avoid dir rename on merely modified path' '
-	test_setup_9h &&
+test_expect_success '9h-check: Avoid dir rename on merely modified path' '
 	(
 		cd 9h &&
 
@@ -2994,7 +2957,7 @@ test_expect_success '9h: Avoid dir rename on merely modified path' '
 #   Expected: Aborted Merge +
 #       ERROR_MSG(untracked working tree files would be overwritten by merge)
 
-test_setup_10a () {
+test_expect_success '10a-setup: Overwrite untracked with normal rename/delete' '
 	test_create_repo 10a &&
 	(
 		cd 10a &&
@@ -3020,10 +2983,9 @@ test_setup_10a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '10a: Overwrite untracked with normal rename/delete' '
-	test_setup_10a &&
+test_expect_success '10a-check: Overwrite untracked with normal rename/delete' '
 	(
 		cd 10a &&
 
@@ -3059,7 +3021,7 @@ test_expect_success '10a: Overwrite untracked with normal rename/delete' '
 #             z/c_1 -> z/d_1 rename recorded at stage 3 for y/d +
 #       ERROR_MSG(refusing to lose untracked file at 'y/d')
 
-test_setup_10b () {
+test_expect_success '10b-setup: Overwrite untracked with dir rename + delete' '
 	test_create_repo 10b &&
 	(
 		cd 10b &&
@@ -3088,10 +3050,9 @@ test_setup_10b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '10b: Overwrite untracked with dir rename + delete' '
-	test_setup_10b &&
+test_expect_success '10b-check: Overwrite untracked with dir rename + delete' '
 	(
 		cd 10b &&
 
@@ -3137,10 +3098,10 @@ test_expect_success '10b: Overwrite untracked with dir rename + delete' '
 #             y/c~B^0 +
 #             ERROR_MSG(Refusing to lose untracked file at y/c)
 
-test_setup_10c () {
-	test_create_repo 10c_$1 &&
+test_expect_success '10c-setup: Overwrite untracked with dir rename/rename(1to2)' '
+	test_create_repo 10c &&
 	(
-		cd 10c_$1 &&
+		cd 10c &&
 
 		mkdir z x &&
 		echo a >z/a &&
@@ -3167,12 +3128,11 @@ test_setup_10c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '10c1: Overwrite untracked with dir rename/rename(1to2)' '
-	test_setup_10c 1 &&
+test_expect_success '10c-check: Overwrite untracked with dir rename/rename(1to2)' '
 	(
-		cd 10c_1 &&
+		cd 10c &&
 
 		git checkout A^0 &&
 		echo important >y/c &&
@@ -3203,10 +3163,9 @@ test_expect_success '10c1: Overwrite untracked with dir rename/rename(1to2)' '
 	)
 '
 
-test_expect_success '10c2: Overwrite untracked with dir rename/rename(1to2), other direction' '
-	test_setup_10c 2 &&
+test_expect_success '10c-check: Overwrite untracked with dir rename/rename(1to2), other direction' '
 	(
-		cd 10c_2 &&
+		cd 10c &&
 
 		git reset --hard &&
 		git clean -fdqx &&
@@ -3249,7 +3208,7 @@ test_expect_success '10c2: Overwrite untracked with dir rename/rename(1to2), oth
 #             CONFLICT(rename/rename) z/c_1 vs x/f_2 -> y/wham
 #             ERROR_MSG(Refusing to lose untracked file at y/wham)
 
-test_setup_10d () {
+test_expect_success '10d-setup: Delete untracked with dir rename/rename(2to1)' '
 	test_create_repo 10d &&
 	(
 		cd 10d &&
@@ -3281,10 +3240,9 @@ test_setup_10d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '10d: Delete untracked with dir rename/rename(2to1)' '
-	test_setup_10d &&
+test_expect_success '10d-check: Delete untracked with dir rename/rename(2to1)' '
 	(
 		cd 10d &&
 
@@ -3332,7 +3290,7 @@ test_expect_success '10d: Delete untracked with dir rename/rename(2to1)' '
 #   Commit B: z/{a,b,c}
 #   Expected: y/{a,b,c} + untracked z/c
 
-test_setup_10e () {
+test_expect_success '10e-setup: Does git complain about untracked file that is not really in the way?' '
 	test_create_repo 10e &&
 	(
 		cd 10e &&
@@ -3359,9 +3317,9 @@ test_setup_10e () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_failure '10e: Does git complain about untracked file that is not really in the way?' '
+test_expect_failure '10e-check: Does git complain about untracked file that is not really in the way?' '
 	(
 		cd 10e &&
 
@@ -3413,7 +3371,7 @@ test_expect_failure '10e: Does git complain about untracked file that is not rea
 #             z/c~HEAD with contents of B:z/b_v2,
 #             z/c with uncommitted mods on top of A:z/c_v1
 
-test_setup_11a () {
+test_expect_success '11a-setup: Avoid losing dirty contents with simple rename' '
 	test_create_repo 11a &&
 	(
 		cd 11a &&
@@ -3440,10 +3398,9 @@ test_setup_11a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '11a: Avoid losing dirty contents with simple rename' '
-	test_setup_11a &&
+test_expect_success '11a-check: Avoid losing dirty contents with simple rename' '
 	(
 		cd 11a &&
 
@@ -3484,7 +3441,7 @@ test_expect_success '11a: Avoid losing dirty contents with simple rename' '
 #             ERROR_MSG(Refusing to lose dirty file at z/c)
 
 
-test_setup_11b () {
+test_expect_success '11b-setup: Avoid losing dirty file involved in directory rename' '
 	test_create_repo 11b &&
 	(
 		cd 11b &&
@@ -3513,10 +3470,9 @@ test_setup_11b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '11b: Avoid losing dirty file involved in directory rename' '
-	test_setup_11b &&
+test_expect_success '11b-check: Avoid losing dirty file involved in directory rename' '
 	(
 		cd 11b &&
 
@@ -3559,7 +3515,7 @@ test_expect_success '11b: Avoid losing dirty file involved in directory rename'
 #   Expected: Abort_msg("following files would be overwritten by merge") +
 #             y/c left untouched (still has uncommitted mods)
 
-test_setup_11c () {
+test_expect_success '11c-setup: Avoid losing not-uptodate with rename + D/F conflict' '
 	test_create_repo 11c &&
 	(
 		cd 11c &&
@@ -3589,10 +3545,9 @@ test_setup_11c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '11c: Avoid losing not-uptodate with rename + D/F conflict' '
-	test_setup_11c &&
+test_expect_success '11c-check: Avoid losing not-uptodate with rename + D/F conflict' '
 	(
 		cd 11c &&
 
@@ -3626,7 +3581,7 @@ test_expect_success '11c: Avoid losing not-uptodate with rename + D/F conflict'
 #             Warning_Msg("Refusing to lose dirty file at z/c) +
 #             y/{a,c~HEAD,c/d}, x/b, now-untracked z/c_v1 with uncommitted mods
 
-test_setup_11d () {
+test_expect_success '11d-setup: Avoid losing not-uptodate with rename + D/F conflict' '
 	test_create_repo 11d &&
 	(
 		cd 11d &&
@@ -3657,10 +3612,9 @@ test_setup_11d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '11d: Avoid losing not-uptodate with rename + D/F conflict' '
-	test_setup_11d &&
+test_expect_success '11d-check: Avoid losing not-uptodate with rename + D/F conflict' '
 	(
 		cd 11d &&
 
@@ -3705,7 +3659,7 @@ test_expect_success '11d: Avoid losing not-uptodate with rename + D/F conflict'
 #             y/c~HEAD has A:y/c_2 contents
 #             y/c has dirty file from before merge
 
-test_setup_11e () {
+test_expect_success '11e-setup: Avoid deleting not-uptodate with dir rename/rename(1to2)/add' '
 	test_create_repo 11e &&
 	(
 		cd 11e &&
@@ -3737,10 +3691,9 @@ test_setup_11e () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '11e: Avoid deleting not-uptodate with dir rename/rename(1to2)/add' '
-	test_setup_11e &&
+test_expect_success '11e-check: Avoid deleting not-uptodate with dir rename/rename(1to2)/add' '
 	(
 		cd 11e &&
 
@@ -3791,7 +3744,7 @@ test_expect_success '11e: Avoid deleting not-uptodate with dir rename/rename(1to
 #             CONFLICT(rename/rename) x/c vs x/d -> y/wham
 #             ERROR_MSG(Refusing to lose dirty file at y/wham)
 
-test_setup_11f () {
+test_expect_success '11f-setup: Avoid deleting not-uptodate with dir rename/rename(2to1)' '
 	test_create_repo 11f &&
 	(
 		cd 11f &&
@@ -3820,10 +3773,9 @@ test_setup_11f () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '11f: Avoid deleting not-uptodate with dir rename/rename(2to1)' '
-	test_setup_11f &&
+test_expect_success '11f-check: Avoid deleting not-uptodate with dir rename/rename(2to1)' '
 	(
 		cd 11f &&
 
@@ -3880,7 +3832,7 @@ test_expect_success '11f: Avoid deleting not-uptodate with dir rename/rename(2to
 #   Commit B: node1/{leaf1,leaf2,leaf5}, node2/{leaf3,leaf4,leaf6}
 #   Expected: node1/{leaf1,leaf2,leaf5,node2/{leaf3,leaf4,leaf6}}
 
-test_setup_12a () {
+test_expect_success '12a-setup: Moving one directory hierarchy into another' '
 	test_create_repo 12a &&
 	(
 		cd 12a &&
@@ -3910,10 +3862,9 @@ test_setup_12a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '12a: Moving one directory hierarchy into another' '
-	test_setup_12a &&
+test_expect_success '12a-check: Moving one directory hierarchy into another' '
 	(
 		cd 12a &&
 
@@ -3959,7 +3910,7 @@ test_expect_success '12a: Moving one directory hierarchy into another' '
 #         To which, I can do no more than shrug my shoulders and say that
 #         even simple rules give weird results when given weird inputs.
 
-test_setup_12b () {
+test_expect_success '12b-setup: Moving two directory hierarchies into each other' '
 	test_create_repo 12b &&
 	(
 		cd 12b &&
@@ -3987,10 +3938,9 @@ test_setup_12b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '12b: Moving two directory hierarchies into each other' '
-	test_setup_12b &&
+test_expect_success '12b-check: Moving two directory hierarchies into each other' '
 	(
 		cd 12b &&
 
@@ -4026,7 +3976,7 @@ test_expect_success '12b: Moving two directory hierarchies into each other' '
 #   NOTE: This is *exactly* like 12c, except that every path is modified on
 #         each side of the merge.
 
-test_setup_12c () {
+test_expect_success '12c-setup: Moving one directory hierarchy into another w/ content merge' '
 	test_create_repo 12c &&
 	(
 		cd 12c &&
@@ -4058,10 +4008,9 @@ test_setup_12c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '12c: Moving one directory hierarchy into another w/ content merge' '
-	test_setup_12c &&
+test_expect_success '12c-check: Moving one directory hierarchy into another w/ content merge' '
 	(
 		cd 12c &&
 
@@ -4102,122 +4051,6 @@ test_expect_success '12c: Moving one directory hierarchy into another w/ content
 	)
 '
 
-# Testcase 12d, Rename/merge of subdirectory into the root
-#   Commit O: a/b/subdir/foo
-#   Commit A: subdir/foo
-#   Commit B: a/b/subdir/foo, a/b/bar
-#   Expected: subdir/foo, bar
-
-test_setup_12d () {
-	test_create_repo 12d &&
-	(
-		cd 12d &&
-
-		mkdir -p a/b/subdir &&
-		test_commit a/b/subdir/foo &&
-
-		git branch O &&
-		git branch A &&
-		git branch B &&
-
-		git checkout A &&
-		mkdir subdir &&
-		git mv a/b/subdir/foo.t subdir/foo.t &&
-		test_tick &&
-		git commit -m "A" &&
-
-		git checkout B &&
-		test_commit a/b/bar
-	)
-}
-
-test_expect_success '12d: Rename/merge subdir into the root, variant 1' '
-	test_setup_12d &&
-	(
-		cd 12d &&
-
-		git checkout A^0 &&
-
-		git -c merge.directoryRenames=true merge -s recursive B^0 &&
-
-		git ls-files -s >out &&
-		test_line_count = 2 out &&
-
-		git rev-parse >actual \
-			HEAD:subdir/foo.t   HEAD:bar.t &&
-		git rev-parse >expect \
-			O:a/b/subdir/foo.t  B:a/b/bar.t &&
-		test_cmp expect actual &&
-
-		git hash-object bar.t >actual &&
-		git rev-parse B:a/b/bar.t >expect &&
-		test_cmp expect actual &&
-
-		test_must_fail git rev-parse HEAD:a/b/subdir/foo.t &&
-		test_must_fail git rev-parse HEAD:a/b/bar.t &&
-		test_path_is_missing a/ &&
-		test_path_is_file bar.t
-	)
-'
-
-# Testcase 12e, Rename/merge of subdirectory into the root
-#   Commit O: a/b/foo
-#   Commit A: foo
-#   Commit B: a/b/foo, a/b/bar
-#   Expected: foo, bar
-
-test_setup_12e () {
-	test_create_repo 12e &&
-	(
-		cd 12e &&
-
-		mkdir -p a/b &&
-		test_commit a/b/foo &&
-
-		git branch O &&
-		git branch A &&
-		git branch B &&
-
-		git checkout A &&
-		mkdir subdir &&
-		git mv a/b/foo.t foo.t &&
-		test_tick &&
-		git commit -m "A" &&
-
-		git checkout B &&
-		test_commit a/b/bar
-	)
-}
-
-test_expect_success '12e: Rename/merge subdir into the root, variant 2' '
-	test_setup_12e &&
-	(
-		cd 12e &&
-
-		git checkout A^0 &&
-
-		git -c merge.directoryRenames=true merge -s recursive B^0 &&
-
-		git ls-files -s >out &&
-		test_line_count = 2 out &&
-
-		git rev-parse >actual \
-			HEAD:foo.t   HEAD:bar.t &&
-		git rev-parse >expect \
-			O:a/b/foo.t  B:a/b/bar.t &&
-		test_cmp expect actual &&
-
-		git hash-object bar.t >actual &&
-		git rev-parse B:a/b/bar.t >expect &&
-		test_cmp expect actual &&
-
-		test_must_fail git rev-parse HEAD:a/b/foo.t &&
-		test_must_fail git rev-parse HEAD:a/b/bar.t &&
-		test_path_is_missing a/ &&
-		test_path_is_file bar.t
-	)
-'
-
 ###########################################################################
 # SECTION 13: Checking informational and conflict messages
 #
@@ -4235,10 +4068,10 @@ test_expect_success '12e: Rename/merge subdir into the root, variant 2' '
 #   Commit B: z/{b,c,d,e/f}
 #   Expected: y/{b,c,d,e/f}, with notices/conflicts for both y/d and y/e/f
 
-test_setup_13a () {
-	test_create_repo 13a_$1 &&
+test_expect_success '13a-setup: messages for newly added files' '
+	test_create_repo 13a &&
 	(
-		cd 13a_$1 &&
+		cd 13a &&
 
 		mkdir z &&
 		echo b >z/b &&
@@ -4264,12 +4097,11 @@ test_setup_13a () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '13a(conflict): messages for newly added files' '
-	test_setup_13a conflict &&
+test_expect_success '13a-check(conflict): messages for newly added files' '
 	(
-		cd 13a_conflict &&
+		cd 13a &&
 
 		git checkout A^0 &&
 
@@ -4289,10 +4121,9 @@ test_expect_success '13a(conflict): messages for newly added files' '
 	)
 '
 
-test_expect_success '13a(info): messages for newly added files' '
-	test_setup_13a info &&
+test_expect_success '13a-check(info): messages for newly added files' '
 	(
-		cd 13a_info &&
+		cd 13a &&
 
 		git reset --hard &&
 		git checkout A^0 &&
@@ -4322,10 +4153,10 @@ test_expect_success '13a(info): messages for newly added files' '
 #   Expected: y/{b,c,d_merged}, with two conflict messages for y/d,
 #             one about content, and one about file location
 
-test_setup_13b () {
-	test_create_repo 13b_$1 &&
+test_expect_success '13b-setup: messages for transitive rename with conflicted content' '
+	test_create_repo 13b &&
 	(
-		cd 13b_$1 &&
+		cd 13b &&
 
 		mkdir x &&
 		mkdir z &&
@@ -4354,12 +4185,11 @@ test_setup_13b () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '13b(conflict): messages for transitive rename with conflicted content' '
-	test_setup_13b conflict &&
+test_expect_success '13b-check(conflict): messages for transitive rename with conflicted content' '
 	(
-		cd 13b_conflict &&
+		cd 13b &&
 
 		git checkout A^0 &&
 
@@ -4377,10 +4207,9 @@ test_expect_success '13b(conflict): messages for transitive rename with conflict
 	)
 '
 
-test_expect_success '13b(info): messages for transitive rename with conflicted content' '
-	test_setup_13b info &&
+test_expect_success '13b-check(info): messages for transitive rename with conflicted content' '
 	(
-		cd 13b_info &&
+		cd 13b &&
 
 		git reset --hard &&
 		git checkout A^0 &&
@@ -4409,10 +4238,10 @@ test_expect_success '13b(info): messages for transitive rename with conflicted c
 #             d and B had full knowledge, but that's a slippery slope as
 #             shown in testcase 13d.
 
-test_setup_13c () {
-	test_create_repo 13c_$1 &&
+test_expect_success '13c-setup: messages for rename/rename(1to1) via transitive rename' '
+	test_create_repo 13c &&
 	(
-		cd 13c_$1 &&
+		cd 13c &&
 
 		mkdir x &&
 		mkdir z &&
@@ -4440,12 +4269,11 @@ test_setup_13c () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '13c(conflict): messages for rename/rename(1to1) via transitive rename' '
-	test_setup_13c conflict &&
+test_expect_success '13c-check(conflict): messages for rename/rename(1to1) via transitive rename' '
 	(
-		cd 13c_conflict &&
+		cd 13c &&
 
 		git checkout A^0 &&
 
@@ -4462,10 +4290,9 @@ test_expect_success '13c(conflict): messages for rename/rename(1to1) via transit
 	)
 '
 
-test_expect_success '13c(info): messages for rename/rename(1to1) via transitive rename' '
-	test_setup_13c info &&
+test_expect_success '13c-check(info): messages for rename/rename(1to1) via transitive rename' '
 	(
-		cd 13c_info &&
+		cd 13c &&
 
 		git reset --hard &&
 		git checkout A^0 &&
@@ -4497,10 +4324,10 @@ test_expect_success '13c(info): messages for rename/rename(1to1) via transitive
 #               * B renames a/y to c/y, and A renames c/->d/ => a/y -> d/y
 #               No conflict in where a/y ends up, so put it in d/y.
 
-test_setup_13d () {
-	test_create_repo 13d_$1 &&
+test_expect_success '13d-setup: messages for rename/rename(1to1) via dual transitive rename' '
+	test_create_repo 13d &&
 	(
-		cd 13d_$1 &&
+		cd 13d &&
 
 		mkdir a &&
 		mkdir b &&
@@ -4529,12 +4356,11 @@ test_setup_13d () {
 		test_tick &&
 		git commit -m "B"
 	)
-}
+'
 
-test_expect_success '13d(conflict): messages for rename/rename(1to1) via dual transitive rename' '
-	test_setup_13d conflict &&
+test_expect_success '13d-check(conflict): messages for rename/rename(1to1) via dual transitive rename' '
 	(
-		cd 13d_conflict &&
+		cd 13d &&
 
 		git checkout A^0 &&
 
@@ -4554,10 +4380,9 @@ test_expect_success '13d(conflict): messages for rename/rename(1to1) via dual tr
 	)
 '
 
-test_expect_success '13d(info): messages for rename/rename(1to1) via dual transitive rename' '
-	test_setup_13d info &&
+test_expect_success '13d-check(info): messages for rename/rename(1to1) via dual transitive rename' '
 	(
-		cd 13d_info &&
+		cd 13d &&
 
 		git reset --hard &&
 		git checkout A^0 &&
@@ -4623,7 +4448,7 @@ test_expect_success '13d(info): messages for rename/rename(1to1) via dual transi
 #          in the outer merge for this special kind of setup, but it at
 #          least avoids hitting a BUG().
 #
-test_setup_13e () {
+test_expect_success '13e-setup: directory rename detection in recursive case' '
 	test_create_repo 13e &&
 	(
 		cd 13e &&
@@ -4668,10 +4493,9 @@ test_setup_13e () {
 		test_tick &&
 		git commit -m "D"
 	)
-}
+'
 
-test_expect_success '13e: directory rename detection in recursive case' '
-	test_setup_13e &&
+test_expect_success '13e-check: directory rename detection in recursive case' '
 	(
 		cd 13e &&