sqlite/ext/lsm1/lsm-test
dan 3b328522f4 Fix a threading problem in lsm test code.
FossilOrigin-Name: 501238b9fbb4eece084b4bfce84a5f37a986f34db8081df517e60ef81f357454
2017-06-06 16:14:49 +00:00
..
README Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest.h Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest1.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest2.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest3.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest4.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest5.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest6.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest7.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest8.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest9.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_bt.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_datasource.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_func.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_io.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_main.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_mem.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_tdb.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_tdb.h Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_tdb2.cc Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_tdb3.c Fix a threading problem in lsm test code. 2017-06-06 16:14:49 +00:00
lsmtest_tdb4.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00
lsmtest_util.c Add test code for LSM to the ext/lsm1/lsm-test directory. 2017-06-01 16:13:57 +00:00

README


Organization of test case files:

  lsmtest1.c: Data tests. Tests that perform many inserts and deletes on a 
              database file, then verify that the contents of the database can
              be queried.

  lsmtest2.c: Crash tests. Tests that attempt to verify that the database 
              recovers correctly following an application or system crash.

  lsmtest3.c: Rollback tests. Tests that focus on the explicit rollback of
              transactions and sub-transactions.

  lsmtest4.c: Multi-client tests.

  lsmtest5.c: Multi-client tests with a different thread for each client.

  lsmtest6.c: OOM injection tests.

  lsmtest7.c: API tests.

  lsmtest8.c: Writer crash tests. Tests in this file attempt to verify that
              the system recovers and other clients proceed unaffected if
              a process fails in the middle of a write transaction.

              The difference from lsmtest2.c is that this file tests
              live-recovery (recovery from a failure that occurs while other
              clients are still running) whereas lsmtest2.c tests recovery
              from a system or power failure.

  lsmtest9.c: More data tests. These focus on testing that calling
              lsm_work(nMerge=1) to compact the database does not corrupt it.
              In other words, that databases containing block-redirects
              can be read and written.