diff options
author | Charlie Swanson <cswanson310@gmail.com> | 2016-12-07 08:33:46 -0500 |
---|---|---|
committer | Charlie Swanson <cswanson310@gmail.com> | 2016-12-07 12:07:20 -0500 |
commit | 0bca5d9fc70fe4178441eaf097324e6da814410a (patch) | |
tree | b1ebad6bf389c54e5fdc9c7c6595b2dfefe7cee7 /jstests/libs/parallelTester.js | |
parent | d5024d5e0ca6cbb883a4ec65c5c76614bbdbbd53 (diff) | |
download | mongo-0bca5d9fc70fe4178441eaf097324e6da814410a.tar.gz |
SERVER-27042 Stabilize currentop.js and add unit tests for lock state reporting
Diffstat (limited to 'jstests/libs/parallelTester.js')
-rw-r--r-- | jstests/libs/parallelTester.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/libs/parallelTester.js b/jstests/libs/parallelTester.js index ca964d86111..d4d8f96d7b4 100644 --- a/jstests/libs/parallelTester.js +++ b/jstests/libs/parallelTester.js @@ -173,7 +173,6 @@ if (typeof _threadInject != "undefined") { // this has a chance to see the message "connections_opened.js", // counts connections, globally "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 "update_setOnInsert.js", // SERVER-9982 @@ -192,11 +191,12 @@ if (typeof _threadInject != "undefined") { // some tests can't be run in parallel with each other var serialTestsArr = [ + // These tests use fsyncLock. parallelFilesDir + "/fsync.js", - parallelFilesDir + "/auth1.js", + parallelFilesDir + "/currentop.js", // These tests expect the profiler to be on or off at specific points. They should not - // be run in parallel with tests that peform fsyncLock. User operations skip writing to + // be run in parallel with tests that perform fsyncLock. User operations skip writing to // the system.profile collection while the server is fsyncLocked. // // The profiler tests can be run in parallel with each other as they use test-specific |