diff options
author | Luke Diamand <luke@diamand.org> | 2015-04-28 10:08:01 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-04-28 12:19:43 -0700 |
commit | e80967b28704930b4ca30f8dedf7ce0145c7eaa4 (patch) | |
tree | 878bad423d3a69f68ec11cae328696ab1ad8c243 /t/lib-git-p4.sh | |
parent | Sync with 2.3.7 (diff) | |
download | tgif-e80967b28704930b4ca30f8dedf7ce0145c7eaa4.tar.xz |
git-p4: add failing tests for case-folding p4d
When p4d runs on a case-folding OS, git-p4 can end up getting
very confused. This adds failing tests to demonstrate the problem.
Signed-off-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-git-p4.sh')
-rw-r--r-- | t/lib-git-p4.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib-git-p4.sh b/t/lib-git-p4.sh index 5aa8adcf9c..75482254a3 100644 --- a/t/lib-git-p4.sh +++ b/t/lib-git-p4.sh @@ -69,7 +69,7 @@ start_p4d() { ( cd "$db" && { - p4d -q -p $P4DPORT & + p4d -q -p $P4DPORT "$@" & echo $! >"$pidfile" } ) && |