summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-07-08 11:16:22 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-07-08 11:16:22 -0400
commit61e8803c55522aa835330b68c6e733c7a54e41e0 (patch)
treed94adf7c92982e4cf9ae180e61521e5ba7554432
parent38d6fbe214b57d5118147d35488dea5a3c4017dc (diff)
downloadmongo-61e8803c55522aa835330b68c6e733c7a54e41e0.tar.gz
Now the 'transactional' keyword is gone, remove uses it in the test suite.
-rw-r--r--test/suite/test_config03.py2
-rw-r--r--test/suite/test_config04.py2
-rw-r--r--test/suite/test_txn01.py3
-rw-r--r--test/suite/test_txn02.py3
-rw-r--r--test/suite/test_txn03.py3
5 files changed, 5 insertions, 8 deletions
diff --git a/test/suite/test_config03.py b/test/suite/test_config03.py
index 88cf8db66d3..6ad3f4750bb 100644
--- a/test/suite/test_config03.py
+++ b/test/suite/test_config03.py
@@ -68,7 +68,7 @@ class test_config03(test_base03.test_base03):
config_vars = [ 'cache_size', 'create', 'error_prefix', 'eviction_target',
'eviction_trigger', 'hazard_max', 'logging',
- 'multiprocess', 'session_max', 'transactional', 'verbose' ]
+ 'multiprocess', 'session_max', 'verbose' ]
all_scenarios = wtscenario.multiply_scenarios('_',
cache_size_scenarios, create_scenarios, error_prefix_scenarios,
diff --git a/test/suite/test_config04.py b/test/suite/test_config04.py
index 43d78bc16cd..c837354728a 100644
--- a/test/suite/test_config04.py
+++ b/test/suite/test_config04.py
@@ -173,7 +173,7 @@ class test_config04(wttest.WiredTigerTestCase):
def test_transactional(self):
# Note: this will have functional tests in the future.
- self.common_test('transactional')
+ self.common_test('')
if __name__ == '__main__':
wttest.run()
diff --git a/test/suite/test_txn01.py b/test/suite/test_txn01.py
index 51af0532c37..6600ff68ada 100644
--- a/test/suite/test_txn01.py
+++ b/test/suite/test_txn01.py
@@ -43,8 +43,7 @@ class test_txn01(wttest.WiredTigerTestCase):
# Overrides WiredTigerTestCase
def setUpConnectionOpen(self, dir):
conn = wiredtiger.wiredtiger_open(dir, 'create,' +
- ('error_prefix="%s: ",' % self.shortid()) +
- 'transactional,')
+ ('error_prefix="%s: ",' % self.shortid()))
self.pr(`conn`)
return conn
diff --git a/test/suite/test_txn02.py b/test/suite/test_txn02.py
index f1926024ffe..ec0e2240f3d 100644
--- a/test/suite/test_txn02.py
+++ b/test/suite/test_txn02.py
@@ -75,8 +75,7 @@ class test_txn02(wttest.WiredTigerTestCase):
# Overrides WiredTigerTestCase
def setUpConnectionOpen(self, dir):
conn = wiredtiger.wiredtiger_open(dir, 'create,' +
- ('error_prefix="%s: ",' % self.shortid()) +
- 'transactional,')
+ ('error_prefix="%s: ",' % self.shortid()))
self.pr(`conn`)
self.session2 = conn.open_session()
return conn
diff --git a/test/suite/test_txn03.py b/test/suite/test_txn03.py
index aa074677a57..f86d47d41c4 100644
--- a/test/suite/test_txn03.py
+++ b/test/suite/test_txn03.py
@@ -48,8 +48,7 @@ class test_txn03(wttest.WiredTigerTestCase):
# Overrides WiredTigerTestCase
def setUpConnectionOpen(self, dir):
conn = wiredtiger.wiredtiger_open(dir, 'create,' +
- ('error_prefix="%s: ",' % self.shortid()) +
- 'transactional,')
+ ('error_prefix="%s: ",' % self.shortid()))
self.pr(`conn`)
return conn