Skip to content

Commit 6fdb2de

Browse files
authored
GODRIVER-3802 Skip large encryption tests on mongocryptd. (#2324)
1 parent b6c50f9 commit 6fdb2de

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

internal/integration/client_side_encryption_prose_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,9 @@ func TestClientSideEncryptionProse_3_external_key_vault_test(t *testing.T) {
397397
}
398398

399399
func TestClientSideEncryptionProse_4_bson_size_limits_and_batch_splitting(t *testing.T) {
400+
if os.Getenv("CRYPT_SHARED_LIB_PATH") == "" {
401+
t.Skip("skipping large encryption tests on mongocryptd due to DRIVERS-3382")
402+
}
400403
mt := newCSE_T(t, mtest.NewOptions())
401404
mt.Setup()
402405

@@ -537,6 +540,9 @@ func TestClientSideEncryptionProse_5_views_are_prohibited(t *testing.T) {
537540
}
538541

539542
func TestClientSideEncryptionProse_6_corpus_test(t *testing.T) {
543+
if os.Getenv("CRYPT_SHARED_LIB_PATH") == "" {
544+
t.Skip("skipping large encryption tests on mongocryptd due to DRIVERS-3382")
545+
}
540546
mt := newCSE_T(t, newNoClientOpts())
541547
mt.Setup()
542548

0 commit comments

Comments
 (0)