diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2013-09-14 03:36:24 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-17 10:18:13 -0700 |
commit | b0f49ff13033621af06af742e3615fe905833562 (patch) | |
tree | f41ac64f6e59b4c0fedda30ef4cfe4f75920c8db | |
parent | branch.c: Relax unnecessary requirement on upstream's remote ref name (diff) | |
download | tgif-b0f49ff13033621af06af742e3615fe905833562.tar.xz |
t3200: fix failure on case-insensitive filesystems
62d94a3a (t3200: Add test demonstrating minor regression in 41c21f2;
2013-09-08) introduced a test which creates a directory named 'a',
however, on case-insensitive filesystems, this action fails with a
"fatal: cannot mkdir a: File exists" error due to a file named 'A' left
over from earlier tests. Resolve this problem.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t3200-branch.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh index f010303270..55c9ab0b6a 100755 --- a/t/t3200-branch.sh +++ b/t/t3200-branch.sh @@ -872,6 +872,7 @@ test_expect_success '--merged catches invalid object names' ' ' test_expect_success 'tracking with unexpected .fetch refspec' ' + rm -rf a b c d && git init a && ( cd a && |