diff options
| author | Pete Wyckoff <pw@padd.com> | 2013-01-26 22:11:06 -0500 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2013-01-26 22:00:38 -0800 |
| commit | 0f487d308d819cf6c64b866cb2f5c366a13b1639 (patch) | |
| tree | 92bcd0fe266f6a87028736c8cea6395d54b619fc | |
| parent | git p4: remove unused imports (diff) | |
| download | git-0f487d308d819cf6c64b866cb2f5c366a13b1639.tar.gz git-0f487d308d819cf6c64b866cb2f5c366a13b1639.zip | |
git p4: generate better error message for bad depot path
Depot paths must start with //. Exit with a better explanation
when a bad depot path is supplied.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rwxr-xr-x | git-p4.py | 1 | ||||
| -rwxr-xr-x | t/t9800-git-p4-basic.sh | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -3163,6 +3163,7 @@ class P4Clone(P4Sync): self.cloneExclude = ["/"+p for p in self.cloneExclude] for p in depotPaths: if not p.startswith("//"): + sys.stderr.write('Depot paths must start with "//": %s\n' % p) return False if not self.cloneDestination: diff --git a/t/t9800-git-p4-basic.sh b/t/t9800-git-p4-basic.sh index 166e75209f..665607c9cb 100755 --- a/t/t9800-git-p4-basic.sh +++ b/t/t9800-git-p4-basic.sh @@ -30,6 +30,11 @@ test_expect_success 'basic git p4 clone' ' ) ' +test_expect_success 'depot typo error' ' + test_must_fail git p4 clone --dest="$git" /depot 2>errs && + grep "Depot paths must start with" errs +' + test_expect_success 'git p4 clone @all' ' git p4 clone --dest="$git" //depot@all && test_when_finished cleanup_git && |
