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

@ -1,5 +1,5 @@
C Fix\sa\smemory\sleak\sin\sALTER\sTABLE.\s(CVS\s2149)
D 2004-11-23T16:31:17
C fulltest\sruns\snow,\sbut\sstill\sfinds\sa\smemory\sleak.\s(CVS\s2150)
D 2004-11-23T22:16:40
F Makefile.in 8291610f5839939a5fbff4dbbf85adb0fe1ac37f
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README a01693e454a00cc117967e3f9fdab2d4d52e9bc1
@ -113,7 +113,7 @@ F test/collate5.test 7999fb3122386bae38acd8ccd61e0b7c5a30e289
F test/collate6.test 6c9470d1606ee3e564675b229653e320c49ec638
F test/conflict.test c5b849b01cfbe0a4f63a90cba6f68e2fe3a75f87
F test/corrupt.test 0080ddcece23e8ba47c44608c4fb73fd4d1d8ce2
F test/crash.test 48b481769dd0ead25b0dfc0150853bfa39a3b65c
F test/crash.test 39d6ec8f6dcaa63ace67a28ab9423d4591af947d
F test/crashtest1.c 09c1c7d728ccf4feb9e481671e29dda5669bbcc2
F test/cursor.test d7c65ea0fc4e321e12fbcf5c7f3e2211ef45379b
F test/date.test dda578ec1857837156bd8b32f8e09d81d7d7881c
@ -177,7 +177,7 @@ F test/select6.test c00d300d90f0ae3fa4e4f4336c71b2345bfa819c
F test/select7.test b952604c22a5644a065e9e99dc904b5a65565f07
F test/sort.test 87882e6c72a75d45e98a1c802c1ded0eac557d85
F test/subselect.test ff3850d0aab1443dafa4ecbdab1d01e58e7b366d
F test/table.test 9e0d406073cb5752e25cee36a48a1c349f634b66
F test/table.test b8b0bee2ac2f3d36a674bc68344c1bdd80e99a18
F test/tableapi.test b21ab097e87a5484bb61029e69e1a4e5c5e65ede
F test/tclsqlite.test 861464afab6e28a0f3b236984cb24b0a7a20e508
F test/temptable.test 63a16e3ad19adf073cfbcdf7624c92ac5236522c
@ -261,7 +261,7 @@ F www/tclsqlite.tcl 560ecd6a916b320e59f2917317398f3d59b7cc25
F www/vdbe.tcl 095f106d93875c94b47367384ebc870517431618
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl fdacb0ba2d39831e8a6240d05a490026ad4c4e4c
P 9f0d744ee4d99f44e88c6f799821791c3b5f31b6
R 03f725c22a09099554b36400e4198cba
U danielk1977
Z 4e08678bf69c6bd3c7b9d609af7bdaeb
P ba71716ce21ae99b10b2d0b61092497872770ef7
R 588648047c234f49c11681926b76de4d
U drh
Z e546cca4e7c3f392b488cc615c2185f9

View File

@ -1 +1 @@
ba71716ce21ae99b10b2d0b61092497872770ef7
5944d51e6c164270301b57e4351add4cb6137be6

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