diff options
author | Ted Tuckman <ted.tuckman@mongodb.com> | 2018-10-10 10:17:12 -0400 |
---|---|---|
committer | Ted Tuckman <ted.tuckman@mongodb.com> | 2018-10-12 09:45:05 -0400 |
commit | 8e638c938ed3c17d090a85de8b35676af31f8db5 (patch) | |
tree | f1f4047458badda283a3991dee841112b2918bc9 /buildscripts | |
parent | 65eced031a2c8d8b1c5e5815881466b8fbb3bc01 (diff) | |
download | mongo-8e638c938ed3c17d090a85de8b35676af31f8db5.tar.gz |
Remove listLocalCursors
Diffstat (limited to 'buildscripts')
6 files changed, 6 insertions, 11 deletions
diff --git a/buildscripts/resmokeconfig/suites/causally_consistent_jscore_passthrough_auth.yml b/buildscripts/resmokeconfig/suites/causally_consistent_jscore_passthrough_auth.yml index 21061c18a9a..62549ec9346 100644 --- a/buildscripts/resmokeconfig/suites/causally_consistent_jscore_passthrough_auth.yml +++ b/buildscripts/resmokeconfig/suites/causally_consistent_jscore_passthrough_auth.yml @@ -105,7 +105,6 @@ selector: - jstests/core/drop3.js # Logical sessions require that only one user be authenticated, # but this suite puts us in a multi-auth state. - - jstests/core/list_all_local_cursors.js # Too many users authenticated - jstests/core/list_all_sessions.js # Too many users authenticated - jstests/core/list_sessions.js # Too many users authenticated # The following tests fail because of divergent dropCollection behavior between standalones and diff --git a/buildscripts/resmokeconfig/suites/replica_sets_kill_primary_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/replica_sets_kill_primary_jscore_passthrough.yml index 7bbf4965be9..794e9517859 100644 --- a/buildscripts/resmokeconfig/suites/replica_sets_kill_primary_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/replica_sets_kill_primary_jscore_passthrough.yml @@ -102,8 +102,8 @@ selector: # "Refusing to run a test that issues commands that may return different values after a failover" # "Refusing to run a test that issues an aggregation command with explain because it may return # incomplete results" - # "Refusing to run a test that issues an aggregation command with $listLocalCursors or - # $listLocalSessions because they rely on in-memory state that may not survive failovers" + # "Refusing to run a test that issues an aggregation command with + # $listLocalSessions because it relies on in-memory state that may not survive failovers" # "Refusing to run a test that issues a mapReduce command, because it calls std::terminate() if # interrupted by a stepdown" - does_not_support_stepdowns diff --git a/buildscripts/resmokeconfig/suites/replica_sets_multi_stmt_txn_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/replica_sets_multi_stmt_txn_jscore_passthrough.yml index f091d2944f0..5961b4e0614 100644 --- a/buildscripts/resmokeconfig/suites/replica_sets_multi_stmt_txn_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/replica_sets_multi_stmt_txn_jscore_passthrough.yml @@ -216,7 +216,6 @@ selector: # Creates sessions explicitly, resulting in txns being run through different sessions # using a single txnNumber. - - jstests/core/list_all_local_cursors.js - jstests/core/json_schema/misc_validation.js - jstests/core/views/views_all_commands.js diff --git a/buildscripts/resmokeconfig/suites/replica_sets_terminate_primary_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/replica_sets_terminate_primary_jscore_passthrough.yml index 7443c8e7665..11dae1e4ef1 100644 --- a/buildscripts/resmokeconfig/suites/replica_sets_terminate_primary_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/replica_sets_terminate_primary_jscore_passthrough.yml @@ -102,8 +102,8 @@ selector: # "Refusing to run a test that issues commands that may return different values after a failover" # "Refusing to run a test that issues an aggregation command with explain because it may return # incomplete results" - # "Refusing to run a test that issues an aggregation command with $listLocalCursors or - # $listLocalSessions because they rely on in-memory state that may not survive failovers" + # "Refusing to run a test that issues an aggregation command with + # $listLocalSessions because it relies on in-memory state that may not survive failovers" # "Refusing to run a test that issues a mapReduce command, because it calls std::terminate() if # interrupted by a stepdown" - does_not_support_stepdowns diff --git a/buildscripts/resmokeconfig/suites/retryable_writes_jscore_stepdown_passthrough.yml b/buildscripts/resmokeconfig/suites/retryable_writes_jscore_stepdown_passthrough.yml index 326eec12c4c..716e018bf35 100644 --- a/buildscripts/resmokeconfig/suites/retryable_writes_jscore_stepdown_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/retryable_writes_jscore_stepdown_passthrough.yml @@ -95,8 +95,8 @@ selector: # "Refusing to run a test that issues commands that may return different values after a failover" # "Refusing to run a test that issues an aggregation command with explain because it may return # incomplete results" - # "Refusing to run a test that issues an aggregation command with $listLocalCursors or - # $listLocalSessions because they rely on in-memory state that may not survive failovers" + # "Refusing to run a test that issues an aggregation command with + # $listLocalSessions because it relies on in-memory state that may not survive failovers" # "Refusing to run a test that issues a mapReduce command, because it calls std::terminate() if # interrupted by a stepdown" - does_not_support_stepdowns diff --git a/buildscripts/resmokeconfig/suites/secondary_reads_passthrough.yml b/buildscripts/resmokeconfig/suites/secondary_reads_passthrough.yml index 61213855559..7e22a7b3c97 100644 --- a/buildscripts/resmokeconfig/suites/secondary_reads_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/secondary_reads_passthrough.yml @@ -14,9 +14,6 @@ selector: # These tests attempt to read from the "system.profile" collection, which may be missing entries # if a write was performed on the primary of the replica set instead. - jstests/core/*profile*.js - # Two cursors can be established on different secondaries, so the count of - # $listLocalCursors will not always be 2. - - jstests/core/list_all_local_cursors.js # Tests that fail for Causal Consistency with default injected readPreference 'secondary' # "TODO SERVER-30384: These tests assume that documents are returned in the same order they are |