summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod
diff options
context:
space:
mode:
authorYu Jin Kang Park <yujin.kang@mongodb.com>2022-06-15 13:19:49 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-07-06 12:17:47 +0000
commit574d60b493f71e6433a784dc3a2a8fd3fed171a1 (patch)
tree0ec8447e2cf81fa33f7729f779afe649ab0f344f /jstests/noPassthroughWithMongod
parent02dfedb849374159219251422ada6035333e2c3b (diff)
downloadmongo-574d60b493f71e6433a784dc3a2a8fd3fed171a1.tar.gz
SERVER-55208: Remove nojournal,duroff and evergreen variant
Diffstat (limited to 'jstests/noPassthroughWithMongod')
-rw-r--r--jstests/noPassthroughWithMongod/bench_test_crud_commands.js5
-rw-r--r--jstests/noPassthroughWithMongod/commands_that_write_accept_wc_standalone.js2
2 files changed, 2 insertions, 5 deletions
diff --git a/jstests/noPassthroughWithMongod/bench_test_crud_commands.js b/jstests/noPassthroughWithMongod/bench_test_crud_commands.js
index 8830ff4bdc7..548bfd8c394 100644
--- a/jstests/noPassthroughWithMongod/bench_test_crud_commands.js
+++ b/jstests/noPassthroughWithMongod/bench_test_crud_commands.js
@@ -73,10 +73,7 @@ function testWriteConcern() {
testInsert(docs, {"w": "majority"});
testInsert(docs, {"w": 1, "j": false});
- var storageEnginesWithoutJournaling = new Set(["inMemory"]);
- var runningWithoutJournaling = TestData.noJournal ||
- storageEnginesWithoutJournaling.has(db.serverStatus().storageEngine.name);
- if (!runningWithoutJournaling) {
+ if (jsTestOptions().storageEngine != "inMemory") {
// Only test journaled writes if the server actually supports them.
testInsert(docs, {"j": true});
}
diff --git a/jstests/noPassthroughWithMongod/commands_that_write_accept_wc_standalone.js b/jstests/noPassthroughWithMongod/commands_that_write_accept_wc_standalone.js
index 25083f1484c..3a4e48d9dbc 100644
--- a/jstests/noPassthroughWithMongod/commands_that_write_accept_wc_standalone.js
+++ b/jstests/noPassthroughWithMongod/commands_that_write_accept_wc_standalone.js
@@ -2,7 +2,7 @@
* This file tests that commands that should accept a writeConcern on a standalone can accept one.
* This does not test that writes with j: true are actually made durable or that if j: true fails
* that there is a writeConcern error.
- * @tags: [requires_journaling]
+ * @tags: [requires_persistence]
*/
(function() {