summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorPete Wyckoff <pw@padd.com>2013-01-26 22:11:07 -0500
committerJunio C Hamano <gitster@pobox.com>2013-01-26 22:00:38 -0800
commitdaa38f4ae0afdc6357c547d2f6bd5270e1e4151a (patch)
treee272b830efe029f20ee1abdf69c58efafee9eaa3 /t
parent0f487d308d819cf6c64b866cb2f5c366a13b1639 (diff)
downloadgit-daa38f4ae0afdc6357c547d2f6bd5270e1e4151a.tar.gz
git p4 test: use client_view to build the initial client
Simplify the code a bit by using an existing function. Signed-off-by: Pete Wyckoff <pw@padd.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rw-r--r--t/lib-git-p4.sh11
1 files changed, 2 insertions, 9 deletions
diff --git a/t/lib-git-p4.sh b/t/lib-git-p4.sh
index 7061dce7e5..890ee60708 100644
--- a/t/lib-git-p4.sh
+++ b/t/lib-git-p4.sh
@@ -74,15 +74,8 @@ start_p4d() {
fi
# build a client
- (
- cd "$cli" &&
- p4 client -i <<-EOF
- Client: client
- Description: client
- Root: $cli
- View: //depot/... //client/...
- EOF
- )
+ client_view "//depot/... //client/..." &&
+
return 0
}