summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorRobert Guo <robert.guo@10gen.com>2016-09-28 10:16:16 -0400
committerRobert Guo <robert.guo@10gen.com>2016-09-28 10:16:16 -0400
commit147ad2bd828886c7fd4fd5c7dfa22edba7d05529 (patch)
tree780bffb96de596e5b9594d42ae9b9958625d9a22 /buildscripts
parenta659f34e38acad197955283a077c43204bc6a360 (diff)
downloadmongo-147ad2bd828886c7fd4fd5c7dfa22edba7d05529.tar.gz
Revert "SERVER-25917 add initialsync fuzzer suite"
This reverts commit 95d0f754231cf54360ee348f97de0bcd709f3792.
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml31
-rw-r--r--buildscripts/resmokelib/testing/hooks.py4
2 files changed, 2 insertions, 33 deletions
diff --git a/buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml b/buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml
deleted file mode 100644
index 0ac1d04c6f7..00000000000
--- a/buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-selector:
- js_test:
- roots:
- - jstestfuzz/out/*.js
-
-executor:
- js_test:
- config:
- shell_options:
- readMode: commands
- global_vars:
- TestData:
- ignoreCommandsIncompatibleWithInitialSync: true
- hooks:
- - class: BackgroundInitialSync
- n: 4
- shell_options:
- global_vars:
- TestData:
- skipValidationOnInvalidViewDefinitions: true
- # Need to run CleanEveryN here because collection dropping is blacklisted.
- - class: CleanEveryN
- n: 20
- fixture:
- class: ReplicaSetFixture
- mongod_options:
- oplogSize: 511
- set_parameters:
- enableTestCommands: 1
- num_nodes: 2
- start_initial_sync_node: True
diff --git a/buildscripts/resmokelib/testing/hooks.py b/buildscripts/resmokelib/testing/hooks.py
index a5f47255ad0..15e71c8d19d 100644
--- a/buildscripts/resmokelib/testing/hooks.py
+++ b/buildscripts/resmokelib/testing/hooks.py
@@ -181,10 +181,10 @@ class BackgroundInitialSync(JsCustomBehavior):
DEFAULT_N = CleanEveryN.DEFAULT_N
- def __init__(self, logger, fixture, use_resync=False, n=DEFAULT_N, shell_options=None):
+ def __init__(self, logger, fixture, use_resync=False, n=DEFAULT_N):
description = "Background Initial Sync"
js_filename = os.path.join("jstests", "hooks", "run_initial_sync_node_validation.js")
- JsCustomBehavior.__init__(self, logger, fixture, js_filename, description, shell_options)
+ JsCustomBehavior.__init__(self, logger, fixture, js_filename, description)
self.use_resync = use_resync
self.n = n