Skip to content

Commit 6f2afce

Browse files
committed
fix overmatching
1 parent 963ffc7 commit 6f2afce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/k8s-integration/main.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ func generateGCETestSkip(testParams *testParameters) string {
545545
}
546546
// Volume cloning has timeouts due to GCE disk cloning rate limits, and operation serialization
547547
// race conditions where the cloning begins while the source disk is still being created.
548-
skipString = skipString + "|.*should\\sprovision\\sstorage\\swith\\spvc\\sdata\\ssource.*"
548+
skipString = skipString + "|provisioning\\sshould\\sprovision\\sstorage\\swith\\spvc\\sdata\\ssource[^|]*"
549549
return skipString
550550
}
551551

@@ -590,8 +590,7 @@ func generateGKETestSkip(testParams *testParameters) string {
590590
}
591591
// Volume cloning has timeouts due to GCE disk cloning rate limits, and operation serialization
592592
// race conditions where the cloning begins while the source disk is still being created.
593-
skipString = skipString + "|.*should\\sprovision\\sstorage\\swith\\spvc\\sdata\\ssource.*"
594-
593+
skipString = skipString + "|provisioning\\sshould\\sprovision\\sstorage\\swith\\spvc\\sdata\\ssource[^|]*"
595594
return skipString
596595
}
597596

0 commit comments

Comments
 (0)