提交 16168986 编写于 作者: P Pete Wyckoff 提交者: Junio C Hamano

git p4 test: wildcards are supported

Since 9d57c4a6 (git p4: implement view spec wildcards with "p4
where", 2013-08-30), all the wildcard types should be supported.
Change must-fail tests to mark that they now pass.
Signed-off-by: NPete Wyckoff <pw@padd.com>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 feb28ad0
......@@ -76,28 +76,28 @@ test_expect_success 'init depot' '
'
# double % for printf
test_expect_success 'unsupported view wildcard %%n' '
test_expect_success 'view wildcard %%n' '
client_view "//depot/%%%%1/sub/... //client/sub/%%%%1/..." &&
test_when_finished cleanup_git &&
test_must_fail git p4 clone --use-client-spec --dest="$git" //depot
git p4 clone --use-client-spec --dest="$git" //depot
'
test_expect_success 'unsupported view wildcard *' '
test_expect_success 'view wildcard *' '
client_view "//depot/*/bar/... //client/*/bar/..." &&
test_when_finished cleanup_git &&
test_must_fail git p4 clone --use-client-spec --dest="$git" //depot
git p4 clone --use-client-spec --dest="$git" //depot
'
test_expect_success 'wildcard ... only supported at end of spec 1' '
test_expect_success 'wildcard ... in the middle' '
client_view "//depot/.../file11 //client/.../file11" &&
test_when_finished cleanup_git &&
test_must_fail git p4 clone --use-client-spec --dest="$git" //depot
git p4 clone --use-client-spec --dest="$git" //depot
'
test_expect_success 'wildcard ... only supported at end of spec 2' '
test_expect_success 'wildcard ... in the middle and at the end' '
client_view "//depot/.../a/... //client/.../a/..." &&
test_when_finished cleanup_git &&
test_must_fail git p4 clone --use-client-spec --dest="$git" //depot
git p4 clone --use-client-spec --dest="$git" //depot
'
test_expect_success 'basic map' '
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册