Skip to content

Commit 3c8a05f

Browse files
committed
SERVER-35984 Remove remaining MMAPv1 testing
1 parent a6e2c10 commit 3c8a05f

File tree

7 files changed

+2
-12
lines changed

7 files changed

+2
-12
lines changed

jstests/core/views/views_all_commands.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,6 @@
318318
invalidateUserCache: {skip: isUnrelated},
319319
isdbgrid: {skip: isUnrelated},
320320
isMaster: {skip: isUnrelated},
321-
journalLatencyTest: {skip: isUnrelated},
322321
killCursors: {
323322
setup: function(conn) {
324323
assert.writeOK(conn.collection.remove({}));

jstests/disk/too_many_fds.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
function doTest() {
55
var baseName = "jstests_disk_too_many_fds";
66

7-
var m = MongoRunner.runMongod({nssize: 1});
7+
var m = MongoRunner.runMongod();
88
// Make 1026 collections, each in a separate database. On some storage engines, this may cause
99
// 1026 files to be created.
1010
for (var i = 1; i < 1026; ++i) {
@@ -16,7 +16,7 @@ function doTest() {
1616
MongoRunner.stopMongod(m);
1717

1818
// Ensure we can still start up with that many files.
19-
var m2 = MongoRunner.runMongod({dbpath: m.dbpath, nssize: 1, restart: true, cleanData: false});
19+
var m2 = MongoRunner.runMongod({dbpath: m.dbpath, restart: true, cleanData: false});
2020
assert.eq(1, m2.getDB("db1025").getCollection("coll1025").count());
2121
MongoRunner.stopMongod(m2);
2222

jstests/noPassthroughWithMongod/testing_only_commands.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ var testOnlyCommands = [
77
'configureFailPoint',
88
'_hashBSONElement',
99
'replSetTest',
10-
'journalLatencyTest',
1110
'godinsert',
1211
'sleep',
1312
'cpuload',

jstests/replsets/server_status_metrics.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ function testSecondaryMetrics(secondary, opCount, offset) {
2020
assert(ss.metrics.repl.buffer.sizeBytes >= 0, "size (bytes)] missing");
2121
assert(ss.metrics.repl.buffer.maxSizeBytes >= 0, "maxSize (bytes) missing");
2222

23-
assert(ss.metrics.repl.preload.docs.num >= 0, "preload.docs num missing");
24-
assert(ss.metrics.repl.preload.docs.totalMillis >= 0, "preload.docs time missing");
25-
assert(ss.metrics.repl.preload.docs.num >= 0, "preload.indexes num missing");
26-
assert(ss.metrics.repl.preload.indexes.totalMillis >= 0, "preload.indexes time missing");
27-
2823
assert(ss.metrics.repl.apply.batches.num > 0, "no batches");
2924
assert(ss.metrics.repl.apply.batches.totalMillis >= 0, "missing batch time");
3025
assert.eq(ss.metrics.repl.apply.ops, opCount + offset, "wrong number of applied ops");

jstests/sharding/safe_secondary_reads_drop_recreate.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@
195195
invalidateUserCache: {skip: "does not return user data"},
196196
isdbgrid: {skip: "does not return user data"},
197197
isMaster: {skip: "does not return user data"},
198-
journalLatencyTest: {skip: "does not return user data"},
199198
killAllSessions: {skip: "does not return user data"},
200199
killAllSessionsByPattern: {skip: "does not return user data"},
201200
killCursors: {skip: "does not return user data"},

jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@
225225
invalidateUserCache: {skip: "does not return user data"},
226226
isdbgrid: {skip: "does not return user data"},
227227
isMaster: {skip: "does not return user data"},
228-
journalLatencyTest: {skip: "does not return user data"},
229228
killCursors: {skip: "does not return user data"},
230229
killAllSessions: {skip: "does not return user data"},
231230
killAllSessionsByPattern: {skip: "does not return user data"},

jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@
198198
invalidateUserCache: {skip: "does not return user data"},
199199
isdbgrid: {skip: "does not return user data"},
200200
isMaster: {skip: "does not return user data"},
201-
journalLatencyTest: {skip: "does not return user data"},
202201
killAllSessions: {skip: "does not return user data"},
203202
killAllSessionsByPattern: {skip: "does not return user data"},
204203
killCursors: {skip: "does not return user data"},

0 commit comments

Comments
 (0)