summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2021-04-11 19:37:21 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-04-11 23:58:52 +0000
commitcd9151050f4f37960da917909263458aebfa2c9f (patch)
tree568c2cc73e79f900784db2cc1c8304e86033943c
parentf5a4ebbb86e1efe99fbb432f50159117354eaed5 (diff)
downloadmongo-cd9151050f4f37960da917909263458aebfa2c9f.tar.gz
SERVER-55994 SERVER-56019 add temporary exclusion for timeseries_index.js to replica_sets_initsync_jscore_passthrough.yml
-rw-r--r--buildscripts/resmokeconfig/suites/replica_sets_initsync_jscore_passthrough.yml2
-rw-r--r--jstests/core/timeseries/timeseries_index.js2
2 files changed, 4 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/replica_sets_initsync_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/replica_sets_initsync_jscore_passthrough.yml
index 149afd7971f..d4bffa5efce 100644
--- a/buildscripts/resmokeconfig/suites/replica_sets_initsync_jscore_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/replica_sets_initsync_jscore_passthrough.yml
@@ -31,6 +31,8 @@ selector:
- jstests/core/txns/transactions_profiling.js
# The downstream syncing node affects the top output.
- jstests/core/top.js
+ # TODO(SERVER-56019): Test hangs in burn_in_tests configuration.
+ - jstests/core/timeseries/timeseries_index.js
exclude_with_any_tags:
- assumes_standalone_mongod
diff --git a/jstests/core/timeseries/timeseries_index.js b/jstests/core/timeseries/timeseries_index.js
index 477935136b6..5bfd4aba516 100644
--- a/jstests/core/timeseries/timeseries_index.js
+++ b/jstests/core/timeseries/timeseries_index.js
@@ -133,6 +133,8 @@ const runTest = function(keyForCreate, hint) {
assert.commandWorked(coll.dropIndex('hide2'), 'failed to drop index: hide2');
// Check that we are able to create the index as hidden.
+ // TODO(SERVER-56019): This test case tends to be problematic in the burn_in_tests suite under
+ // the replica_sets_initsync_jscore_passthrough subtask.
assert.commandWorked(coll.createIndex(keyForCreate, {name: 'hide3', hidden: true}),
'failed to create index: ' + tojson(keyForCreate));
assert.commandFailedWithCode(assert.throws(() => bucketsColl.find().hint(hint).toArray()),