diff options
author | drh <drh@noemail.net> | 2007-04-06 15:02:13 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-04-06 15:02:13 +0000 |
commit | 15926590ed196daf2b28481914363a9fe9172a7c (patch) | |
tree | 7666325912be2d2a462a9c0058cbb94a34d60eb0 /src/tclsqlite.c | |
parent | 60218d2a0e73f4e0c23d42e565e8157605836ae8 (diff) | |
download | sqlite-15926590ed196daf2b28481914363a9fe9172a7c.tar.gz sqlite-15926590ed196daf2b28481914363a9fe9172a7c.zip |
Binary file I/O infrastructure added and used to increase test coverage
for detection of corrupt database files. (CVS 3822)
FossilOrigin-Name: 479b3d965b19c3ec4cb72542718751debf8ff75c
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 e7b2ac467..50b563f8d 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.178 2007/04/05 21:58:33 drh Exp $ +** $Id: tclsqlite.c,v 1.179 2007/04/06 15:02:14 drh Exp $ */ #include "tcl.h" @@ -2218,6 +2218,7 @@ int TCLSH_MAIN(int argc, char **argv){ extern int Sqlitetesttclvar_Init(Tcl_Interp*); extern int Sqlitetestschema_Init(Tcl_Interp*); extern int Sqlitetest_autoext_Init(Tcl_Interp*); + extern int Sqlitetest_hexio_Init(Tcl_Interp*); Sqlitetest1_Init(interp); Sqlitetest2_Init(interp); @@ -2232,6 +2233,7 @@ int TCLSH_MAIN(int argc, char **argv){ Sqlitetesttclvar_Init(interp); Sqlitetestschema_Init(interp); Sqlitetest_autoext_Init(interp); + Sqlitetest_hexio_Init(interp); Md5_Init(interp); #ifdef SQLITE_SSE Sqlitetestsse_Init(interp); |