Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Re-enable tests that were accidentally disabled by (5112). (CVS 5114) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bf45a3ab7a295dcc399bdcf27965f168 |
User & Date: | danielk1977 2008-05-09 18:03:28.000 |
Context
2008-05-09
| ||
19:38 | Fix leaked filename in case DosOpen() fails. (CVS 5115) (check-in: ecc6c73906 user: pweilbacher tags: trunk) | |
18:03 | Re-enable tests that were accidentally disabled by (5112). (CVS 5114) (check-in: bf45a3ab7a user: danielk1977 tags: trunk) | |
18:03 | Reformulate the constants for the minimum and maximum 64-bit signed integer to work better with some compilers. Ticket #3105. (CVS 5113) (check-in: 18b1ee10b8 user: drh tags: trunk) | |
Changes
Changes to test/incrvacuum_ioerr.test.
︙ | ︙ | |||
11 12 13 14 15 16 17 | # This file implements regression tests for SQLite library. The # focus of this file is testing for correct handling of I/O errors # such as writes failing because the disk is full. # # The tests in this file use special facilities that are only # available in the SQLite test fixture. # | | < < | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | # This file implements regression tests for SQLite library. The # focus of this file is testing for correct handling of I/O errors # such as writes failing because the disk is full. # # The tests in this file use special facilities that are only # available in the SQLite test fixture. # # $Id: incrvacuum_ioerr.test,v 1.5 2008/05/09 18:03:28 danielk1977 Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl # If this build of the library does not support auto-vacuum, omit this # whole file. ifcapable {!autovacuum} { finish_test return } do_ioerr_test incrvacuum-ioerr-1 -cksum 1 -sqlprep { PRAGMA auto_vacuum = 'incremental'; CREATE TABLE abc(a); INSERT INTO abc VALUES(randstr(1500,1500)); } -sqlbody { BEGIN; CREATE TABLE abc2(a); |
︙ | ︙ | |||
100 101 102 103 104 105 106 | db eval {DELETE FROM a WHERE oid} } -sqlbody { PRAGMA incremental_vacuum(5); } -cleanup { sqlite3 db test.db integrity_check incrvacuum-ioerr-2.$n.integritycheck db close | < < | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | db eval {DELETE FROM a WHERE oid} } -sqlbody { PRAGMA incremental_vacuum(5); } -cleanup { sqlite3 db test.db integrity_check incrvacuum-ioerr-2.$n.integritycheck db close } ifcapable shared_cache { catch { db close } file delete -force test.db |
︙ | ︙ |