summaryrefslogtreecommitdiff
path: root/t/lib-git-p4.sh
diff options
context:
space:
mode:
authorLuke Diamand <luke@diamand.org>2015-04-28 09:08:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-04-28 19:19:43 (GMT)
commite80967b28704930b4ca30f8dedf7ce0145c7eaa4 (patch)
tree878bad423d3a69f68ec11cae328696ab1ad8c243 /t/lib-git-p4.sh
parentfb3e7d5515308c73c54c797356651d6ca41b58a6 (diff)
downloadgit-e80967b28704930b4ca30f8dedf7ce0145c7eaa4.zip
git-e80967b28704930b4ca30f8dedf7ce0145c7eaa4.tar.gz
git-e80967b28704930b4ca30f8dedf7ce0145c7eaa4.tar.bz2
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.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib-git-p4.sh b/t/lib-git-p4.sh
index 5aa8adc..7548225 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"
}
) &&