1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Add the beginning of the thread-safety tests. There are more to come. (CVS 4413)

FossilOrigin-Name: 753908e8411024abd5c3da1b8c62f70e35f8734d
This commit is contained in:
danielk1977
2007-09-07 11:29:25 +00:00
parent 91a66398f1
commit 44918fa036
6 changed files with 404 additions and 10 deletions

View File

@@ -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