diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-09-07 11:29:25 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-09-07 11:29:25 +0000 |
commit | 44918fa0363f0194f72e504054b6d9c8b84694cf (patch) | |
tree | 6e22443de6bd8102c9792d7b0c37f50321952b14 /src/tclsqlite.c | |
parent | 91a66398f1719dbdd6f07869d119ec822628592e (diff) | |
download | sqlite-44918fa0363f0194f72e504054b6d9c8b84694cf.tar.gz sqlite-44918fa0363f0194f72e504054b6d9c8b84694cf.zip |
Add the beginning of the thread-safety tests. There are more to come. (CVS 4413)
FossilOrigin-Name: 753908e8411024abd5c3da1b8c62f70e35f8734d
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index d2fcf50ec..c9e56ed1c 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -12,7 +12,7 @@ ** A TCL Interface to SQLite. Append this file to sqlite3.c and ** compile the whole thing to build a TCL-enabled version of SQLite. ** -** $Id: tclsqlite.c,v 1.201 2007/09/03 15:19:35 drh Exp $ +** $Id: tclsqlite.c,v 1.202 2007/09/07 11:29:25 danielk1977 Exp $ */ #include "tcl.h" #include <errno.h> @@ -2497,6 +2497,7 @@ int TCLSH_MAIN(int argc, char **argv){ extern int Sqlitetestschema_Init(Tcl_Interp*); extern int Sqlitetestsse_Init(Tcl_Interp*); extern int Sqlitetesttclvar_Init(Tcl_Interp*); + extern int SqlitetestThread_Init(Tcl_Interp*); Md5_Init(interp); Sqliteconfig_Init(interp); @@ -2515,6 +2516,7 @@ int TCLSH_MAIN(int argc, char **argv){ Sqlitetest_malloc_Init(interp); Sqlitetestschema_Init(interp); Sqlitetesttclvar_Init(interp); + SqlitetestThread_Init(interp); #ifdef SQLITE_SSE Sqlitetestsse_Init(interp); #endif |