aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2006-01-17 16:10:13 +0000
committerdanielk1977 <danielk1977@noemail.net>2006-01-17 16:10:13 +0000
commitcbb8496c5e8ce0b46bb4e09ec2a2994aa62c7d2c (patch)
tree507db4bbabc5327a8666a5ce12fcb4696447a268 /test
parent08659fee65062a45324c627ec122cf4b7c70d0b9 (diff)
downloadsqlite-cbb8496c5e8ce0b46bb4e09ec2a2994aa62c7d2c.tar.gz
sqlite-cbb8496c5e8ce0b46bb4e09ec2a2994aa62c7d2c.zip
Arrange for ThreadData to be automatically deallocated even if SQLITE_MEMDEBUG is defined. Fix for #1623. (CVS 2965)
FossilOrigin-Name: 9e2e40845d30cc150abe23ee318a721b4fe9613c
Diffstat (limited to 'test')
-rw-r--r--test/tester.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tester.tcl b/test/tester.tcl
index 8e3e65490..c83e6f9be 100644
--- a/test/tester.tcl
+++ b/test/tester.tcl
@@ -11,7 +11,7 @@
# This file implements some common TCL routines used for regression
# testing the SQLite library
#
-# $Id: tester.tcl,v 1.61 2006/01/17 09:35:02 danielk1977 Exp $
+# $Id: tester.tcl,v 1.62 2006/01/17 16:10:14 danielk1977 Exp $
# Make sure tclsqlite3 was compiled correctly. Abort now with an
# error message if not.
@@ -150,7 +150,7 @@ proc finalize_testing {} {
pp_check_for_leaks
}
sqlite3 db {}
- sqlite3_clear_tsd_memdebug
+ # sqlite3_clear_tsd_memdebug
db close
if {$::sqlite3_tsd_count} {
puts "Thread-specific data leak: $::sqlite3_tsd_count instances"