summaryrefslogtreecommitdiff
path: root/t/lib-git-p4.sh
diff options
context:
space:
mode:
authorPete Wyckoff <pw@padd.com>2012-04-09 00:18:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-04-09 22:00:33 (GMT)
commit6ab1d76c3cf96aac77a75565dfaa0cf64aa100a1 (patch)
tree7186f5babb7ccf2713c9baf24fa897204c654d27 /t/lib-git-p4.sh
parent9dcb9f24f8f97c5d0d3224791506161dfeac5a69 (diff)
downloadgit-6ab1d76c3cf96aac77a75565dfaa0cf64aa100a1.zip
git-6ab1d76c3cf96aac77a75565dfaa0cf64aa100a1.tar.gz
git-6ab1d76c3cf96aac77a75565dfaa0cf64aa100a1.tar.bz2
git p4: use "git p4" directly in tests
Drop the $GITP4 variable that was used to specify the script in contrib/fast-import/. The command is called "git p4" now, not "git-p4". Note that configuration variables will remain in a section called "git-p4". Signed-off-by: Pete Wyckoff <pw@padd.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-git-p4.sh')
-rw-r--r--t/lib-git-p4.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/t/lib-git-p4.sh b/t/lib-git-p4.sh
index 49edaae..b90986c2 100644
--- a/t/lib-git-p4.sh
+++ b/t/lib-git-p4.sh
@@ -1,20 +1,18 @@
#
-# Library code for git-p4 tests
+# Library code for git p4 tests
#
. ./test-lib.sh
if ! test_have_prereq PYTHON; then
- skip_all='skipping git-p4 tests; python not available'
+ skip_all='skipping git p4 tests; python not available'
test_done
fi
( p4 -h && p4d -h ) >/dev/null 2>&1 || {
- skip_all='skipping git-p4 tests; no p4 or p4d'
+ skip_all='skipping git p4 tests; no p4 or p4d'
test_done
}
-GITP4="$GIT_BUILD_DIR/git-p4"
-
# Try to pick a unique port: guess a large number, then hope
# no more than one of each test is running.
#