aboutsummaryrefslogtreecommitdiff
path: root/test/shared_err.test
Commit message (Collapse)AuthorAge
* Update error message text for standard error codes to better describe thedrh2017-07-10
| | | | | | | | latest usage of those error codes. Modify sqlite3_open_v2() so that it does return a valid sqlite3 object in the event of SQLITE_MISUSE due to bad open flags, so that sqlite3_errmsg() does not report "out of memory" in that case. FossilOrigin-Name: f27b6370407842e2c175ea4aa9ce018723c57eaac0cccc1f8399bc20f33324be
* Update a couple of test cases to account for the fact that ROLLBACK does not ↵drh2014-11-18
| | | | | always abort all running SELECT statements. FossilOrigin-Name: abccda769a3f6b755c3bf70b5fb31a5e16718ef3
* Fixes to a test case in shared_err.test. The fix is to prevent ↵dan2012-12-05
| | | | | sqlite3_prepare() from being called when the test intends to test the response of sqlite3_step() to an OOM condition. FossilOrigin-Name: 40c143955ebe75f8e73119f9103f36a3c8ac4514
* Added SQLITE_OMIT_DEPRECATED compile time option to leave out deprecated ↵shane2008-10-12
| | | | | functions. Updated test scripts to skip tests of deprecated functions if they are compiled out. (CVS 5808) FossilOrigin-Name: ba3711acee6f4659bbf133a23d8f9f37e14d0f38
* Update shared_err.test to work with (5668) (return SQLITE_CORRUPT if ↵danielk19772008-09-29
| | | | | rollback fails). (CVS 5748) FossilOrigin-Name: 292acaf7c4e68b532cc8d1763e02aa79d90ea20c
* Fix the shared_err.test script so that it works if the device supports ↵danielk19772008-09-15
| | | | | SQLITE_IOCAP_SAFEAPPEND. (CVS 5699) FossilOrigin-Name: 38e5ea070a38fe1656e0f5c3024f28ce67eae725
* Fix a problem in shared_err.test preventing it from running properly and add ↵danielk19772008-07-07
| | | | | a test to corrupt2.test to cover another corruption detection case. (CVS 5355) FossilOrigin-Name: 2dcd5287a0d71140baa23aae2ab3d95d78a5676d
* Test a couple of specific malloc() failures that were not tested before. ↵danielk19772008-07-07
| | | | | (CVS 5350) FossilOrigin-Name: b96bcaa197519b5be89e1f6a1579f0e36fe2b644
* Ensure that the db.mallocFailed flag is cleared before sqlite3_errmsg16() ↵danielk19772008-05-22
| | | | | returns. (CVS 5154) FossilOrigin-Name: 0d47653a3c39b7cd41c7e6edd8c4b4543658412d
* Fix test instrumentation problems on shared_err.test. (CVS 4728)drh2008-01-18
| | | FossilOrigin-Name: 5aef5b0dd8e44a56f84fbc6f843016bca5101987
* Enable threadsafe builds by default in configure. Ticket #2606.drh2007-09-03
| | | | | Changes to test scripts to do better testing under all configurations. (CVS 4379) FossilOrigin-Name: d66e08fd4f12407e565dc9fc53a5802216808378
* Better handle a malloc() failure in sqlite3PagerSetPagesize(). (CVS 4332)danielk19772007-08-30
| | | FossilOrigin-Name: 41550d87c9395ab2fec5993655865e29235130a3
* Test case fixes for fulltest. (CVS 4329)drh2007-08-30
| | | FossilOrigin-Name: cddce4950569ac49c1a5224b200b00dcd83a2ba4
* The shared_err test runs with no errors. But a potential deadlock has beendrh2007-08-28
| | | | | discovered and is still unfixed. (CVS 4317) FossilOrigin-Name: f84550be0a0c9e5859b852863b9a8f8ed3fd6919
* Clean up the locking in the btree logic. (CVS 4316)drh2007-08-28
| | | FossilOrigin-Name: 967ab229af462a8ae663090ea36b4cc10e351653
* Update the rest of the malloc failure test scripts to use the new interface. ↵danielk19772007-08-25
| | | | | (CVS 4296) FossilOrigin-Name: b076e1655d6bae5ae10e6ceee646f502435da66a
* Changes to increase test coverage. (CVS 3819)drh2007-04-06
| | | FossilOrigin-Name: fd4da6b13499af2397d52cb0f25f8ff6f2192431
* Fix some problems with test cases in shared_err.test. Also a real bug ↵danielk19772007-03-19
| | | | | causing a segfault after an IO error in pager.c. (CVS 3703) FossilOrigin-Name: 9f62ef1ec385d9f1a1913439dc4c2d710373f12a
* Handle errors in saving cursor positions during a rollback by aborting all ↵danielk19772006-01-24
| | | | | active statements. (CVS 3027) FossilOrigin-Name: 5df9f022bfb22976f22b996bda169635354b825c
* Coverage improvements for main.c. (CVS 3023)danielk19772006-01-24
| | | FossilOrigin-Name: 50964ef9b0159bfdcd7eae88b0806957cab184dc
* More test script changes to get it to run without -DSQLITE_MEMDEBUG. (CVS 3018)drh2006-01-24
| | | FossilOrigin-Name: 0ede5e496bc779e96f05602bebadd10f8a208d48
* Disable shared-cache OOM tests if not compiled with -DSQLITE_MEMDEBUG. (CVS ↵drh2006-01-23
| | | | | 3016) FossilOrigin-Name: 2d896667e460dcdaf83d18bd03050e917d54edc7
* Improve coverage of pager.c and fix an IO error handling bug found in the ↵danielk19772006-01-23
| | | | | process. (CVS 2995) FossilOrigin-Name: 6ec8e6b7856a0b394b8497ab9166b882f98124ba
* Improve coverage of expr.c and btree.c slightly. (CVS 2992)danielk19772006-01-23
| | | FossilOrigin-Name: cc2e8e87cfd474b4dc6833ee0c38e2cd2dd3a494
* Fix more problems with malloc() and IO failures. (CVS 2985)danielk19772006-01-21
| | | FossilOrigin-Name: 29281dea81c909b70b2d914d7061a6df8f388195
* Fix another couple of IO or malloc() failure problems in a shared-cache ↵danielk19772006-01-20
| | | | | context. (CVS 2982) FossilOrigin-Name: 7e34163a65a5842ecc50a14a9d60601e7c9d3249
* Handle some of the IO error conditions that may occur in a shared-cache ↵danielk19772006-01-20
context. (CVS 2980) FossilOrigin-Name: 97491d4eb5fc24d8f5cc7605db844359ecc6a818