diff options
author | Don Anderson <dda@ddanderson.com> | 2012-01-24 16:35:42 -0500 |
---|---|---|
committer | Don Anderson <dda@ddanderson.com> | 2012-01-24 16:35:42 -0500 |
commit | e9014a47cad012e819658a550a307d4382ac6a9c (patch) | |
tree | d493d29eb2030a3876585edbb09ef83f6031618d /test/suite/test_schema03.py | |
parent | 9ee8450f08a9d0839e02a5c802792c4958a50b63 (diff) | |
download | mongo-e9014a47cad012e819658a550a307d4382ac6a9c.tar.gz |
Bump the number of entries in each database up for more rigorous tests.
refs #16.
--HG--
extra : rebase_source : 48d83c7f765be503468c2a698474f79d95bf4d0a
Diffstat (limited to 'test/suite/test_schema03.py')
-rw-r--r-- | test/suite/test_schema03.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/suite/test_schema03.py b/test/suite/test_schema03.py index 2467edcc4be..32794a9e9db 100644 --- a/test/suite/test_schema03.py +++ b/test/suite/test_schema03.py @@ -216,8 +216,7 @@ class test_schema03(wttest.WiredTigerTestCase): # Set whenever we are working with a table current_table = None -#TODO: nentries = 1000 - nentries = 15 + nentries = 50 # We need to have a large number of open files available # to run this test. We probably don't need quite this many, @@ -264,7 +263,7 @@ class test_schema03(wttest.WiredTigerTestCase): resource.setrlimit(resource.RLIMIT_NOFILE, newlimit) def setUpConnectionOpen(self, dir): - cs = 50 * 1024 * 1024 + cs = 100 * 1024 * 1024 conn = wiredtiger.wiredtiger_open(dir, 'create,cache_size=' + str(cs) + ',hazard_max=300') self.pr(`conn`) |