• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..21-Dec-2017-

READMEH A D21-Dec-20171.4 KiB4123

lsmtest.hH A D21-Dec-20179.7 KiB303206

lsmtest1.cH A D21-Dec-201720.2 KiB655440

lsmtest2.cH A D21-Dec-201712.8 KiB489331

lsmtest3.cH A D21-Dec-20175.9 KiB239168

lsmtest4.cH A D21-Dec-20174.4 KiB12871

lsmtest5.cH A D21-Dec-201718.2 KiB634401

lsmtest6.cH A D21-Dec-201715.9 KiB662491

lsmtest7.cH A D21-Dec-20175.4 KiB207154

lsmtest8.cH A D21-Dec-20178.8 KiB327247

lsmtest9.cH A D21-Dec-20173.7 KiB14497

lsmtest_bt.cH A D21-Dec-20171.6 KiB7661

lsmtest_datasource.cH A D21-Dec-20172.1 KiB9778

lsmtest_func.cH A D21-Dec-20173.8 KiB178152

lsmtest_io.cH A D21-Dec-20175.5 KiB249150

lsmtest_main.cH A D21-Dec-201737.2 KiB1,5491,280

lsmtest_mem.cH A D21-Dec-201710.3 KiB410340

lsmtest_tdb.cH A D21-Dec-201720.7 KiB846685

lsmtest_tdb.hH A D21-Dec-20175.8 KiB17545

lsmtest_tdb2.ccH A D21-Dec-20177.5 KiB371312

lsmtest_tdb3.cH A D21-Dec-201735.5 KiB1,3901,079

lsmtest_tdb4.cH A D21-Dec-201725.2 KiB983784

lsmtest_util.cH A D21-Dec-20175.9 KiB224179

lsmtest_win32.cH A D21-Dec-2017728 3124

README

1
2
3Organization of test case files:
4
5  lsmtest1.c: Data tests. Tests that perform many inserts and deletes on a
6              database file, then verify that the contents of the database can
7              be queried.
8
9  lsmtest2.c: Crash tests. Tests that attempt to verify that the database
10              recovers correctly following an application or system crash.
11
12  lsmtest3.c: Rollback tests. Tests that focus on the explicit rollback of
13              transactions and sub-transactions.
14
15  lsmtest4.c: Multi-client tests.
16
17  lsmtest5.c: Multi-client tests with a different thread for each client.
18
19  lsmtest6.c: OOM injection tests.
20
21  lsmtest7.c: API tests.
22
23  lsmtest8.c: Writer crash tests. Tests in this file attempt to verify that
24              the system recovers and other clients proceed unaffected if
25              a process fails in the middle of a write transaction.
26
27              The difference from lsmtest2.c is that this file tests
28              live-recovery (recovery from a failure that occurs while other
29              clients are still running) whereas lsmtest2.c tests recovery
30              from a system or power failure.
31
32  lsmtest9.c: More data tests. These focus on testing that calling
33              lsm_work(nMerge=1) to compact the database does not corrupt it.
34              In other words, that databases containing block-redirects
35              can be read and written.
36
37
38
39
40
41