Git development
 help / color / mirror / Atom feed
* [PATCH] t3700-add.sh: Avoid filename collission between tests which could lead to test failure
@ 2016-10-10  3:57 Jeremy Huddleston Sequoia
  2016-10-10 16:44 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Jeremy Huddleston Sequoia @ 2016-10-10  3:57 UTC (permalink / raw)
  To: git; +Cc: Jeremy Huddleston Sequoia, Thomas Gummerer, Junio C Hamano

Regressed-in: 610d55af0f082f6b866dc858e144c03d8ed4424c
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
CC: Thomas Gummerer <t.gummerer@gmail.com>
CC: Junio C Hamano <gitster@pobox.com>
---
 t/t3700-add.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/t/t3700-add.sh b/t/t3700-add.sh
index 924a266..3ccb19b 100755
--- a/t/t3700-add.sh
+++ b/t/t3700-add.sh
@@ -354,11 +354,11 @@ test_expect_success 'git add --chmod=[+-]x changes index with already added file
 	git add foo3 &&
 	git add --chmod=+x foo3 &&
 	test_mode_in_index 100755 foo3 &&
-	echo foo >xfoo3 &&
-	chmod 755 xfoo3 &&
-	git add xfoo3 &&
-	git add --chmod=-x xfoo3 &&
-	test_mode_in_index 100644 xfoo3
+	echo foo >xfoo4 &&
+	chmod 755 xfoo4 &&
+	git add xfoo4 &&
+	git add --chmod=-x xfoo4 &&
+	test_mode_in_index 100644 xfoo4
 '
 
 test_expect_success POSIXPERM 'git add --chmod=[+-]x does not change the working tree' '
-- 
2.10.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-10 17:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-10  3:57 [PATCH] t3700-add.sh: Avoid filename collission between tests which could lead to test failure Jeremy Huddleston Sequoia
2016-10-10 16:44 ` Junio C Hamano
2016-10-10 17:09   ` Jeremy Huddleston Sequoia

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox