Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update quick.test (CVS 1371) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a61eefa081c219704d9e6c4ee20ef9bf |
User & Date: | danielk1977 2004-05-13 11:46:00.000 |
Context
2004-05-13
| ||
12:32 | Change the OP_ListXX opcodes to use 64 bit integers (CVS 1372) (check-in: da9b3dce33 user: danielk1977 tags: trunk) | |
11:46 | Update quick.test (CVS 1371) (check-in: a61eefa081 user: danielk1977 tags: trunk) | |
11:34 | Various minor fixes and updates to make more test cases pass. (CVS 1370) (check-in: dbe8385ecf user: danielk1977 tags: trunk) | |
Changes
Changes to test/quick.test.
1 2 3 4 5 6 7 8 9 10 11 12 | # 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # This file runs all tests. # | | | < | | | > | 1 2 3 4 5 6 7 8 9 10 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | # 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # This file runs all tests. # # $Id: quick.test,v 1.9 2004/05/13 11:46:00 danielk1977 Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl rename finish_test really_finish_test proc finish_test {} {} set ISQUICK 1 set EXCLUDE { all.test quick.test btree2.test malloc.test memleak.test misuse.test format3.test } lappend EXCLUDE interrupt.test ;# assert() fails in btree lappend EXCLUDE ioerr.test ;# seg-faults (?) lappend EXCLUDE memdb.test ;# fails - malformed database lappend EXCLUDE misc3.test ;# seg-faults (?) lappend EXCLUDE printf.test ;# sqlite3_XX vs sqlite_XX problem lappend EXCLUDE rowid.test ;# sql logic error lappend EXCLUDE table.test ;# assert() fails in pager lappend EXCLUDE trans.test ;# assert() fails in pager lappend EXCLUDE vacuum.test ;# seg-fault lappend EXCLUDE auth.test ;# Cannot attach empty databases. lappend EXCLUDE tableapi.test ;# sqlite3_XX vs sqlite_XX problem lappend EXCLUDE version.test ;# uses the btree_meta API (not updated) # Some tests fail in these file, possibly because of the manifest # type-aware indices (or possibly not). lappend EXCLUDE delete.test lappend EXCLUDE update.test lappend EXCLUDE misc1.test lappend EXCLUDE index.test lappend EXCLUDE copy.test lappend EXCLUDE conflict.test lappend EXCLUDE capi2.test lappend EXCLUDE null.test lappend EXCLUDE trigger2.test lappend EXCLUDE where.test lappend EXCLUDE unique.test lappend EXCLUDE limit.test lappend EXCLUDE intpkey.test if {[sqlite -has-codec]} { lappend EXCLUDE \ attach.test \ attach2.test \ auth.test \ |
︙ | ︙ |