1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

The btree.c module compiles and links and passes some tests. Many tests

still fail, though. (CVS 1321)

FossilOrigin-Name: d394b2b217d4d728f9eba397262bf9d36195719e
This commit is contained in:
drh
2004-05-07 17:57:49 +00:00
parent a34b676483
commit de64713041
8 changed files with 225 additions and 182 deletions

View File

@ -11,7 +11,7 @@
# This file implements some common TCL routines used for regression
# testing the SQLite library
#
# $Id: tester.tcl,v 1.29 2004/04/26 14:10:22 drh Exp $
# $Id: tester.tcl,v 1.30 2004/05/07 17:57:50 drh Exp $
if 0 {
# Make sure tclsqlite was compiled correctly. Abort now with an
@ -110,7 +110,7 @@ proc do_test {name cmd expected} {
puts "\nExpected: \[$expected\]\n Got: \[$result\]"
incr nErr
lappend ::failList $name
if {$nErr>100} {puts "*** Giving up..."; finalize_testing}
if {$nErr>=1} {puts "*** Giving up..."; finalize_testing}
} else {
puts " Ok"
}