summaryrefslogtreecommitdiff
path: root/test/suite/test_txn13.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/test_txn13.py')
-rw-r--r--test/suite/test_txn13.py20
1 files changed, 5 insertions, 15 deletions
diff --git a/test/suite/test_txn13.py b/test/suite/test_txn13.py
index d60fee65bce..dd6a6dbcd6d 100644
--- a/test/suite/test_txn13.py
+++ b/test/suite/test_txn13.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Public Domain 2014-2015 MongoDB, Inc.
+# Public Domain 2014-2016 MongoDB, Inc.
# Public Domain 2008-2014 WiredTiger, Inc.
#
# This is free and unencumbered software released into the public domain.
@@ -33,7 +33,6 @@
#import fnmatch, os, shutil, run, time
from suite_subprocess import suite_subprocess
-from wiredtiger import wiredtiger_open
from wtscenario import check_scenarios
import wiredtiger, wttest
@@ -50,19 +49,10 @@ class test_txn13(wttest.WiredTigerTestCase, suite_subprocess):
('4gb', dict(expect_err=True, valuesize=4194304))
])
- # Overrides WiredTigerTestCase
- def setUpConnectionOpen(self, dir):
- self.home = dir
- conn_params = \
- 'log=(archive=false,enabled,file_max=%s)' % self.logmax + \
- ',create,cache_size=8G,error_prefix="%s: ",' % self.shortid()
- # print "Creating conn at '%s' with config '%s'" % (dir, conn_params)
- try:
- conn = wiredtiger_open(dir, conn_params)
- except wiredtiger.WiredTigerError as e:
- print "Failed conn at '%s' with config '%s'" % (dir, conn_params)
- self.pr(`conn`)
- return conn
+ # Turn on logging for this test.
+ def conn_config(self, dir):
+ return 'log=(archive=false,enabled,file_max=%s)' % self.logmax + \
+ ',cache_size=8G'
@wttest.longtest('txn tests with huge values')
def test_large_values(self):