Get more tests running. (CVS 1409)

FossilOrigin-Name: 7eb3f29e305d0f455f6544560c567fa6b6e24986
This commit is contained in:
drh 2004-05-19 21:09:31 +00:00
parent fec19aad44
commit a34a84fe1a
4 changed files with 12 additions and 14 deletions

View File

@ -1,5 +1,5 @@
C Correctly\shandle\s64-bit\sintegers\sin\sSQL\sstatements.\s(CVS\s1408)
D 2004-05-19T20:41:03
C Get\smore\stests\srunning.\s(CVS\s1409)
D 2004-05-19T21:09:32
F Makefile.in ab7b0d5118e2da97bac66be8684a1034e3500f5a
F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@ -120,7 +120,7 @@ F test/pager2.test 7ff175a28484fd324df9315dfe35f6fb159910ec
F test/pragma.test 06c4e51998dd68115ef7a60abeeff7accf198f83
F test/printf.test 46b3d07d59d871d0831b4a657f6dfcafe0574850
F test/progress.test 701b6115c2613128ececdfe1398a1bd0e1a4cfb3 x
F test/quick.test d73d55f7535287135805a41eb2f522091f5f5e0e
F test/quick.test b16e2c2e5ccf52af0e8b53ad3cda37fe320ee558
F test/quote.test 08f23385c685d3dc7914ec760d492cacea7f6e3d
F test/rowid.test 863e6e75878cccf03d166fe52023f20e09508683
F test/select1.test 3bfcccd2eadcddbb07f1f5da6550aee8484ea4fb
@ -131,7 +131,7 @@ F test/select5.test c2a6c4a003316ee42cbbd689eebef8fdce0db2ac
F test/select6.test a9e31906e700e7c7592c4d0acfc022808f718baf
F test/sort.test 63e1b0e982f08f0ff5b55d420db31f6f8c0d4c1c
F test/subselect.test f0fea8cf9f386d416d64d152e3c65f9116d0f50f
F test/table.test 371a1fc1c470982b2f68f9732f903a5d96f949c4
F test/table.test 50e4534552d0385a0e59b3a6d7dde059ced02f83
F test/tableapi.test e0c4cce61e58343caa84dab33fa6823cb35fe1e1
F test/tclsqlite.test a684fc191b81e6cded8a81263663d5a130fbb013
F test/temptable.test a770ba6308d7f7332fce985086b8e06bed6430c2
@ -193,7 +193,7 @@ F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604
F www/tclsqlite.tcl b9271d44dcf147a93c98f8ecf28c927307abd6da
F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1
F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
P 8f249c45cbc77f4320798ff1a830b55e5c74888a
R ceb7c1c3fcb5c3509b4127012953e677
P 34f03ba6a9d6e2144d0c6cbbbeb37b4c69705f1f
R 6f649f6c623ad18fd759a30cd0ff66ff
U drh
Z a482adf3fb5ad935e0fa295b0148f6f0
Z 2a22d59e6c6d628572425793997ef923

View File

@ -1 +1 @@
34f03ba6a9d6e2144d0c6cbbbeb37b4c69705f1f
7eb3f29e305d0f455f6544560c567fa6b6e24986

View File

@ -10,7 +10,7 @@
#***********************************************************************
# This file runs all tests.
#
# $Id: quick.test,v 1.14 2004/05/19 20:41:04 drh Exp $
# $Id: quick.test,v 1.15 2004/05/19 21:09:32 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -31,9 +31,7 @@ set EXCLUDE {
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 table.test ;# assert() fails in pager
lappend EXCLUDE trans.test ;# assert() fails in pager
lappend EXCLUDE misc3.test ;# seg-faults (due to VACUUM?)
lappend EXCLUDE vacuum.test ;# seg-fault
lappend EXCLUDE printf.test ;# sqlite3_XX vs sqlite_XX problem

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the CREATE TABLE statement.
#
# $Id: table.test,v 1.22 2003/01/29 18:46:54 drh Exp $
# $Id: table.test,v 1.23 2004/05/19 21:09:32 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -492,7 +492,7 @@ do_test table-11.1 {
typeof(e), typeof(f), typeof(g), typeof(h)
FROM t7 LIMIT 1;
}
} {numeric numeric text text text text text numeric}
} {numeric numeric text text text numeric text numeric}
do_test table-11.2 {
execsql {
SELECT typeof(a+b), typeof(a||b), typeof(c+d), typeof(c||d)