Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Tobler <jtobler@gitlab.com>2023-12-06 19:33:02 +0300
committerJustin Tobler <jtobler@gitlab.com>2023-12-06 19:33:02 +0300
commit0259921a8c987922817fc292d32fd3778588cce5 (patch)
tree26a1fafb5b86b3685d918330a1385424ff0f88c0
parent9b54bcc1d8e0ddcefcfdf9142a16778d02a23957 (diff)
smarthttp: Quarantine `TestServer_PostUploadPackWithBundleURI`
The `TestServer_PostUploadPackWithBundleURI` test is flaking resulting in pipeline failures. Quarantine the test to skip its execution.
-rw-r--r--internal/gitaly/service/smarthttp/upload_pack_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/gitaly/service/smarthttp/upload_pack_test.go b/internal/gitaly/service/smarthttp/upload_pack_test.go
index 6707b2c66..afb7f66f8 100644
--- a/internal/gitaly/service/smarthttp/upload_pack_test.go
+++ b/internal/gitaly/service/smarthttp/upload_pack_test.go
@@ -431,6 +431,11 @@ func TestServer_PostUploadPackWithBundleURI(t *testing.T) {
}
func testServerPostUploadPackWithBundleURI(t *testing.T, ctx context.Context) {
+ testhelper.SkipQuarantinedTest(t,
+ "https://gitlab.com/gitlab-org/gitaly/-/issues/5725",
+ "TestServer_PostUploadPackWithBundleURI/upload_pack_boundary_bitmap_traversal=true",
+ )
+
cfg := testcfg.Build(t)
ctx = featureflag.ContextWithFeatureFlag(ctx, featureflag.BundleURI, true)