summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_reconfig01.py
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2020-09-29 13:29:39 +1000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-09-29 03:44:36 +0000
commita6bd068bc2943898b64943c70ae5760c35ba65e0 (patch)
tree231eb4cbdd306fe888e747663e67691a2618d2a4 /src/third_party/wiredtiger/test/suite/test_reconfig01.py
parentf31ce895f1475e1184bafbf74f3c2032b9f1801f (diff)
downloadmongo-a6bd068bc2943898b64943c70ae5760c35ba65e0.tar.gz
Import wiredtiger: bb1cc65a63a4fb081cb5969f0728ff2b74fc7c8b from branch mongodb-4.4
ref: 8a1dce8653..bb1cc65a63 for: 4.4.2 WT-5645 Add Evergreen test that cycles through known failure test/format configs WT-6181 Have Python Evergreen tests print standard output on failure WT-6490 Acquire snapshot for eviction threads WT-6654 Clean up test_backup15.py WT-6657 Fix history store panic when inserting an update without timestamp WT-6670 Fix uninitialized buffer WT-6674 Remove Async API code and documentation WT-6683 Fix logically dead code WT-6685 Add import configuration option to WT_SESSION::create WT-6689 Add support for file import when the exported configuration is provided WT-6721 Add a new Evergreen task to run cyclomatic complexity WT-6734 Add missing brace to Swig Java interface
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_reconfig01.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_reconfig01.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_reconfig01.py b/src/third_party/wiredtiger/test/suite/test_reconfig01.py
index 1e7050f2a4c..7a75419af52 100644
--- a/src/third_party/wiredtiger/test/suite/test_reconfig01.py
+++ b/src/third_party/wiredtiger/test/suite/test_reconfig01.py
@@ -37,33 +37,6 @@ class test_reconfig01(wttest.WiredTigerTestCase):
def test_reconfig_shared_cache(self):
self.conn.reconfigure("shared_cache=(name=pool,size=300M)")
- def test_reconfig_async(self):
- # Async starts off. Reconfigure through all the various cases, each
- # building from the previous state.
- # Async is off, and remains off.
- self.conn.reconfigure("async=(enabled=false)")
- # Async is off, turn it on.
- self.conn.reconfigure("async=(enabled=true)")
- # Async is on, and remains on.
- self.conn.reconfigure("async=(enabled=true)")
- # Async is on, turn it off.
- self.conn.reconfigure("async=(enabled=false)")
- # Async is off, turn it on with ops_max and threads.
- self.conn.reconfigure("async=(enabled=true,ops_max=512,threads=10)")
- # Reconfigure and use same thread count. (no-op)
- self.conn.reconfigure("async=(threads=10)")
- # Reconfigure more threads.
- self.conn.reconfigure("async=(threads=14)")
- # Reconfigure fewer threads.
- self.conn.reconfigure("async=(threads=8)")
- # Reconfigure illegal ops_max (ignored).
- self.conn.reconfigure("async=(ops_max=1024)")
- # Turn async off.
- self.conn.reconfigure("async=(enabled=false)")
- # Async is off, turn it on. Should end up with the
- # same ops_max of 512 and thread of 8.
- self.conn.reconfigure("async=(enabled=true)")
-
def test_reconfig_eviction(self):
# Increase the max number of running threads (default 8).
self.conn.reconfigure("eviction=(threads_max=10)")