diff options
author | Susan LoVerso <sue@wiredtiger.com> | 2015-04-01 15:44:42 -0400 |
---|---|---|
committer | Susan LoVerso <sue@wiredtiger.com> | 2015-04-01 15:44:42 -0400 |
commit | 684fd71475cbc6b15290945af0160fac0313ad6b (patch) | |
tree | b069e5b7f706e03a5f80898358c9904ef380a4c0 /test | |
parent | 507a3005b3bc4f9cc69153da5acb534702b734b8 (diff) | |
download | mongo-684fd71475cbc6b15290945af0160fac0313ad6b.tar.gz |
Reset eol if we continue. Return NOTFOUND if checksum mismatch. #1840
Diffstat (limited to 'test')
-rw-r--r-- | test/suite/test_cursor07.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/suite/test_cursor07.py b/test/suite/test_cursor07.py index 3ec93aa8a44..1fadf58c81f 100644 --- a/test/suite/test_cursor07.py +++ b/test/suite/test_cursor07.py @@ -40,7 +40,9 @@ class test_cursor07(wttest.WiredTigerTestCase, suite_subprocess): logmax = "100K" tablename = 'test_cursor07' uri = 'table:' + tablename - nkeys = 5 + # A large number of keys will force a log file change which will + # test that scenario for log cursors. + nkeys = 7000 scenarios = check_scenarios([ ('regular', dict(reopen=False)), |