1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

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

@ -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)