SERVER-104487 Exclude slow1 suite from macos variants (#44291)

Co-authored-by: Evelyn Wu <evelyn.wu@mongodb.com>
GitOrigin-RevId: 7ef218cfa93648cf05b99649cea5402dae6dd4c1
This commit is contained in:
Evelyn Wu 2025-12-03 15:55:01 -05:00 committed by MongoDB Bot
parent ce141a345e
commit 56f938fe26
7 changed files with 27 additions and 4 deletions

View File

@ -12,7 +12,7 @@ buildvariants:
- macos-14-arm64
expansions:
compile_variant: *enterprise-macos-arm64
test_flags: --excludeWithAnyTags=incompatible_with_macos,requires_gcm
test_flags: --excludeWithAnyTags=incompatible_with_macos,requires_gcm,slow_on_macos
resmoke_jobs_max: 6
tasks:
- name: compile_test_serial_TG

View File

@ -1,3 +1,7 @@
// @tags: [
// # We are choosing not to test on MacOS since it's too noisy.
// slow_on_macos,
// ]
import {funWithArgs} from "jstests/libs/parallel_shell_helpers.js";
const conn = MongoRunner.runMongod();

View File

@ -3,6 +3,8 @@
// does_not_support_stepdowns,
// requires_replication,
// resource_intensive,
// # We are choosing not to test on MacOS since it's too noisy.
// slow_on_macos,
// ]
import {ReplSetTest} from "jstests/libs/replsettest.js";

View File

@ -1,7 +1,10 @@
/**
* Runs initial sync on a node with many databases.
*
* @tags: [incompatible_with_macos]
* @tags: [
* # We are choosing not to test on MacOS since it's too noisy.
* slow_on_macos
* ]
*/
import {ReplSetTest} from "jstests/libs/replsettest.js";

View File

@ -1,6 +1,10 @@
// Tests SERVER-11475 - Make sure server does't crash when many user defined roles are created where
// each role is a member of the next, creating a large chain.
// @tags: [requires_sharding]
// @tags: [
// requires_sharding,
// # We are choosing not to test on MacOS since it's too noisy.
// slow_on_macos,
// ]
import {ShardingTest} from "jstests/libs/shardingtest.js";

View File

@ -1,5 +1,9 @@
// come up with random priorities and make sure that the right member gets
// elected. then kill that member and make sure the next one gets elected.
// @tags: [
// # We are choosing not to test on MacOS since it's too noisy.
// slow_on_macos,
// ]
import {ReplSetTest} from "jstests/libs/replsettest.js";
import {isConfigCommitted, occasionally, reconnect} from "jstests/replsets/rslib.js";

View File

@ -9,7 +9,13 @@
* This test is verifying that startup recovery works as designed following an unclean shutdown
* during the closing checkpoint.
*
* @tags: [requires_wiredtiger, requires_persistence, requires_replication]
* @tags: [
* requires_wiredtiger,
* requires_persistence,
* requires_replication,
* # We are choosing not to test on MacOS since it's too noisy.
* slow_on_macos,
* ]
*/
// This test triggers an unclean shutdown, which may cause inaccurate fast counts.