1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

fulltest runs now, but still finds a memory leak. (CVS 2150)

FossilOrigin-Name: 5944d51e6c164270301b57e4351add4cb6137be6
This commit is contained in:
drh
2004-11-23 22:16:39 +00:00
parent 8b840013da
commit 251b067ccd
4 changed files with 18 additions and 12 deletions

View File

@ -20,7 +20,7 @@
# The special crash-test module with its os_test.c backend only works
# on Unix.
#
# $Id: crash.test,v 1.11 2004/11/08 09:51:09 danielk1977 Exp $
# $Id: crash.test,v 1.12 2004/11/23 22:16:40 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -403,3 +403,9 @@ do_test crash-6.2 {
signature
} $sig
# The AUTOVACUUM was changed above. We have to reset it for
# other scripts that run as part of "fulltest"
#
set AUTOVACUUM $sqlite_options(default_autovacuum)
finish_test

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.34 2004/11/23 09:06:56 danielk1977 Exp $
# $Id: table.test,v 1.35 2004/11/23 22:16:40 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -570,6 +570,7 @@ set sqlite_current_time 0
#
# Try to create a table from within a callback:
unset -nocomplain result
do_test table-14.1 {
set rc [
catch {
@ -648,4 +649,3 @@ do_test table-15.2 {
} {}
finish_test