From 771b95d7ef655b2ecdda9a60e0ac77fb1c72835e Mon Sep 17 00:00:00 2001 From: Durran Jordan Date: Tue, 6 May 2025 17:43:05 +0200 Subject: [PATCH 1/2] test: add logging for gcp flaky test --- test/tools/runner/flaky.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tools/runner/flaky.ts b/test/tools/runner/flaky.ts index 3d11fb7746..4eaf9a59b6 100644 --- a/test/tools/runner/flaky.ts +++ b/test/tools/runner/flaky.ts @@ -5,6 +5,7 @@ import { alphabetically } from '../utils'; export const flakyTests = [ 'Change Streams should properly handle a changeStream event being processed mid-close when invoked with promises', 'Client Side Encryption (Unified) namedKMS-rewrapManyDataKey rewrap to azure:name1', + 'Client Side Encryption (Unified) rewrapManyDataKey rewrap with new GCP KMS provider', 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to aws', 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to azure', 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to gcp', From da749a02371ba962d183a5516ed08ac6217a1b5a Mon Sep 17 00:00:00 2001 From: Durran Jordan Date: Tue, 6 May 2025 19:41:18 +0200 Subject: [PATCH 2/2] test: skip resource cleanup test --- test/integration/node-specific/resource_clean_up.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/integration/node-specific/resource_clean_up.test.ts b/test/integration/node-specific/resource_clean_up.test.ts index 41ec740831..4fd1bd53b1 100644 --- a/test/integration/node-specific/resource_clean_up.test.ts +++ b/test/integration/node-specific/resource_clean_up.test.ts @@ -34,6 +34,12 @@ describe('Driver Resources', () => { context('on MongoClient.close()', () => { before('create leak reproduction script', async function () { + if (process.version.includes('v24')) { + if (this.test) { + this.test.skipReason = 'TODO(NODE-6945): Fix v24 heap snapshot parsing'; + } + this.test?.skip(); + } if (globalThis.AbortController == null || typeof this.configuration.serverApi === 'string') { return; }