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

..03-May-2022-

READMEH A D19-Apr-20211.4 KiB4123

lsmtest.hH A D19-Apr-20219.8 KiB304207

lsmtest1.cH A D19-Apr-202120.4 KiB657444

lsmtest2.cH A D19-Apr-202112.8 KiB489331

lsmtest3.cH A D19-Apr-20215.9 KiB239168

lsmtest4.cH A D19-Apr-20214.4 KiB12871

lsmtest5.cH A D19-Apr-202118.2 KiB634401

lsmtest6.cH A D19-Apr-202115.9 KiB662491

lsmtest7.cH A D19-Apr-20215.4 KiB207154

lsmtest8.cH A D19-Apr-20218.8 KiB325247

lsmtest9.cH A D19-Apr-20213.7 KiB14197

lsmtest_bt.cH A D19-Apr-20211.6 KiB7261

lsmtest_datasource.cH A D19-Apr-20212.1 KiB9778

lsmtest_func.cH A D19-Apr-20213.8 KiB178152

lsmtest_io.cH A D19-Apr-20215.5 KiB249150

lsmtest_main.cH A D19-Apr-202137.2 KiB1,5491,280

lsmtest_mem.cH A D19-Apr-202110.3 KiB410340

lsmtest_tdb.cH A D19-Apr-202120.8 KiB847686

lsmtest_tdb.hH A D19-Apr-20215.8 KiB17545

lsmtest_tdb2.ccH A D19-Apr-20217.5 KiB370312

lsmtest_tdb3.cH A D19-Apr-202136.4 KiB1,4301,111

lsmtest_tdb4.cH A D19-Apr-202125.2 KiB981784

lsmtest_util.cH A D19-Apr-20215.9 KiB224179

lsmtest_win32.cH A D19-Apr-2021728 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