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 21:17:51 +0300
committerJustin Tobler <jtobler@gitlab.com>2023-12-06 21:17:51 +0300
commitb8fda37aff7f658c1b0195fd36cefc93fa3bb718 (patch)
tree6d90c1739e50fc86673bbfd95640d58c02a31db1
parent761861553cbf9b15d2d642b7e313a576a306950d (diff)
parent0259921a8c987922817fc292d32fd3778588cce5 (diff)
Merge branch 'jt/quarantine-flaky-test' into 'master'
smarthttp: Quarantine `TestServer_PostUploadPackWithBundleURI` See merge request https://gitlab.com/gitlab-org/gitaly/-/merge_requests/6571 Merged-by: Justin Tobler <jtobler@gitlab.com> Approved-by: Eric Ju <eju@gitlab.com>
-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)