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:52:45 +0300
committerJustin Tobler <jtobler@gitlab.com>2023-12-06 21:52:45 +0300
commit1b3751461d3ac3b8c96730576bc1f3d4f3f4758c (patch)
tree71f4e1a824fe532c89fffe08fd2011772393c526
parentb8fda37aff7f658c1b0195fd36cefc93fa3bb718 (diff)
smarthttp: Quarantine all `TestServer_PostUploadPackWithBundleURI` cases
In 0259921a, a single `TestServer_PostUploadPackWithBundleURI` test case was quarantined. The remaining test case is also flaking. Quarantine the entire test.
-rw-r--r--internal/gitaly/service/smarthttp/upload_pack_test.go7
1 files changed, 2 insertions, 5 deletions
diff --git a/internal/gitaly/service/smarthttp/upload_pack_test.go b/internal/gitaly/service/smarthttp/upload_pack_test.go
index afb7f66f8..47178ece6 100644
--- a/internal/gitaly/service/smarthttp/upload_pack_test.go
+++ b/internal/gitaly/service/smarthttp/upload_pack_test.go
@@ -425,17 +425,14 @@ func (s *mockBackupSink) Close() error {
func TestServer_PostUploadPackWithBundleURI(t *testing.T) {
t.Parallel()
+ testhelper.SkipQuarantinedTest(t, "https://gitlab.com/gitlab-org/gitaly/-/issues/5725")
+
testhelper.NewFeatureSets(
featureflag.UploadPackBoundaryBitmapTraversal,
).Run(t, testServerPostUploadPackWithBundleURI)
}
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)