summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-05-05 10:45:40 -0400
committerKeith Bostic <keith@wiredtiger.com>2014-05-05 10:45:40 -0400
commitb77ac5b293bf73275a065c9550360c4b56489e0e (patch)
tree4fda505c631278321fc43a1742ea8eea8c62120c /test
parent1ecf3ced6fc6a65869b34976e2b3c3279742d455 (diff)
downloadmongo-b77ac5b293bf73275a065c9550360c4b56489e0e.tar.gz
Verbose is only available from --enable-verbose builds, remove
the test_reconfig_verbose test, it's likely to fail.
Diffstat (limited to 'test')
-rw-r--r--test/suite/test_reconfig.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/suite/test_reconfig.py b/test/suite/test_reconfig.py
index ab73881c4dd..88a5135d4b1 100644
--- a/test/suite/test_reconfig.py
+++ b/test/suite/test_reconfig.py
@@ -39,17 +39,5 @@ class test_reconfig(wttest.WiredTigerTestCase):
self.conn.reconfigure("statistics=(fast)")
self.conn.reconfigure("statistics=(none)")
- def test_reconfig_verbose(self):
- # we know the verbose output format may change in the future,
- # so we just match on a string that's likely to endure.
- with self.expectedStdoutPattern('mutex: '):
- self.conn.reconfigure("verbose=[mutex]")
- # Reopening the connection allows the initial connection
- # to completely close and all its threads to finish.
- # If we don't do this, some trailing threads give additional
- # output after we make our 'expectedStdoutPattern' check,
- # and cause the test to fail.
- self.reopen_conn()
-
if __name__ == '__main__':
wttest.run()