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

Add some more code to support manifest typing in indices. Not activated yet. (CVS 1362)

FossilOrigin-Name: 2f16c9ef3c101c4280991ce3cb0c3bea7b6ed439
This commit is contained in:
danielk1977
2004-05-12 11:24:02 +00:00
parent cfcdaefe11
commit 8d059845fc
11 changed files with 414 additions and 111 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.31 2004/05/10 23:29:51 drh Exp $
# $Id: tester.tcl,v 1.32 2004/05/12 11:24:03 danielk1977 Exp $
# Make sure tclsqlite was compiled correctly. Abort now with an
# error message if not.
@ -107,7 +107,7 @@ proc do_test {name cmd expected} {
puts "\nExpected: \[$expected\]\n Got: \[$result\]"
incr nErr
lappend ::failList $name
if {$nErr>=1} {puts "*** Giving up..."; finalize_testing}
if {$nErr>=100} {puts "*** Giving up..."; finalize_testing}
} else {
puts " Ok"
}