diff options
author | Randolph Tan <randolph@10gen.com> | 2015-04-20 15:36:09 -0400 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2015-05-11 10:09:05 -0400 |
commit | 9f0ceef0b37df2525cdebb172e6b05e2db8a2b20 (patch) | |
tree | 11fa779defcac750089916964aeee605d3330a17 /buildscripts | |
parent | b73ab5765fb75ae87ee5ad0f4afbc4fdfc2bc151 (diff) | |
download | mongo-9f0ceef0b37df2525cdebb172e6b05e2db8a2b20.tar.gz |
SERVER-18195 Read after optime (repl only)
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/resmokeconfig/suites/core_small_oplog_rs.yml | 1 | ||||
-rw-r--r-- | buildscripts/resmokeconfig/suites/sharding_jscore_passthrough.yml | 2 | ||||
-rwxr-xr-x | buildscripts/smoke.py | 15 |
3 files changed, 15 insertions, 3 deletions
diff --git a/buildscripts/resmokeconfig/suites/core_small_oplog_rs.yml b/buildscripts/resmokeconfig/suites/core_small_oplog_rs.yml index 2d44c5675e2..7dda737496a 100644 --- a/buildscripts/resmokeconfig/suites/core_small_oplog_rs.yml +++ b/buildscripts/resmokeconfig/suites/core_small_oplog_rs.yml @@ -11,6 +11,7 @@ selector: - jstests/core/dropdb_race.js - jstests/core/opcounters_write_cmd.js - jstests/core/rename.js + - jstests/core/read_after_optime.js executor: js_test: diff --git a/buildscripts/resmokeconfig/suites/sharding_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/sharding_jscore_passthrough.yml index 86ef6bdc3d3..842f4b5d5bd 100644 --- a/buildscripts/resmokeconfig/suites/sharding_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/sharding_jscore_passthrough.yml @@ -45,6 +45,8 @@ selector: - jstests/core/top.js - jstests/core/dbcase.js # SERVER-11735 - jstests/core/dbcase2.js # SERVER-11735 + # TODO: SERVER-17284 remove once find cmd is implemented in mongos + - jstests/core/read_after_optime.js executor: js_test: diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py index faa37622857..93fa2b38ad3 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -443,10 +443,19 @@ def skipTest(path): parentPath = os.path.dirname(path) parentDir = os.path.basename(parentPath) if small_oplog or small_oplog_rs: # For tests running in parallel - if basename in ["cursor8.js", "indexh.js", "dropdb.js", "dropdb_race.js", - "connections_opened.js", "opcounters_write_cmd.js", "dbadmin.js", + if basename in ["cursor8.js", + "indexh.js", + "dropdb.js", + "dropdb_race.js", + "connections_opened.js", + "opcounters_write_cmd.js", + "dbadmin.js", + # Should not run in repl mode: + "read_after_optime.js", ## Capped tests - "capped_max1.js", "capped_convertToCapped1.js", "rename.js"]: + "capped_max1.js", + "capped_convertToCapped1.js", + "rename.js"]: return True if auth or keyFile: # For tests running with auth # Skip any tests that run with auth explicitly |