diff options
author | Randolph Tan <randolph@10gen.com> | 2014-05-14 14:11:41 -0400 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2014-05-15 14:04:11 -0400 |
commit | f2386b7f2941645d4d2a8538823961630bc8f15d (patch) | |
tree | d4e94dedc800f80b95a93ec6dff8c9ae0fd093ac | |
parent | 0dabee8227d445a18fa5e8e49b2be60ba2a0beef (diff) | |
download | mongo-f2386b7f2941645d4d2a8538823961630bc8f15d.tar.gz |
fix
-rwxr-xr-x | buildscripts/smoke.py | 2 | ||||
-rw-r--r-- | jstests/libs/parallelTester.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py index bc1aa3b1387..de08f79e017 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -406,7 +406,7 @@ def skipTest(path): parentDir = os.path.basename(parentPath) if small_oplog: # For tests running in parallel if basename in ["cursor8.js", "indexh.js", "dropdb.js", "dropdb_race.js", - "connections_opened.js", "opcounters.js", "dbadmin.js"]: + "connections_opened.js", "opcounters_write_cmd.js", "dbadmin.js"]: return True if use_ssl: # Skip tests using mongobridge since it does not support SSL diff --git a/jstests/libs/parallelTester.js b/jstests/libs/parallelTester.js index e4f291de70a..92a5cc90fdd 100644 --- a/jstests/libs/parallelTester.js +++ b/jstests/libs/parallelTester.js @@ -141,7 +141,7 @@ if ( typeof _threadInject != "undefined" ){ "loglong.js",// log might overflow before // this has a chance to see the message "connections_opened.js", // counts connections, globally - "opcounters.js", + "opcounters_write_cmd.js", "currentop.js", // SERVER-8673, plus rwlock yielding issues "set_param1.js", // changes global state "geo_update_btree2.js", // SERVER-11132 test disables table scans |