diff options
Diffstat (limited to 'src/test1.c')
-rw-r--r-- | src/test1.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/test1.c b/src/test1.c index e181f09e1..cd0c65585 100644 --- a/src/test1.c +++ b/src/test1.c @@ -13,7 +13,7 @@ ** is not included in the SQLite library. It is used for automated ** testing of the SQLite library. ** -** $Id: test1.c,v 1.155 2005/08/19 00:14:42 drh Exp $ +** $Id: test1.c,v 1.156 2005/08/29 23:00:05 drh Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -2954,6 +2954,12 @@ static void set_options(Tcl_Interp *interp){ Tcl_SetVar2(interp, "sqlite_options", "threadsafe", "0", TCL_GLOBAL_ONLY); #endif +#ifdef SQLITE_OMIT_TRACE + Tcl_SetVar2(interp, "sqlite_options", "trace", "0", TCL_GLOBAL_ONLY); +#else + Tcl_SetVar2(interp, "sqlite_options", "trace", "1", TCL_GLOBAL_ONLY); +#endif + #ifdef SQLITE_OMIT_TRIGGER Tcl_SetVar2(interp, "sqlite_options", "trigger", "0", TCL_GLOBAL_ONLY); #else |