1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix the test harness so that it does not try to link against

sqlite3_mutex_alloc() if compiled with -DSQLITE_THREADSAFE=0. (CVS 5430)

FossilOrigin-Name: 26a203d894edd0091ac60862956e42d22167011e
This commit is contained in:
drh
2008-07-17 17:34:19 +00:00
parent 71b53ca460
commit b912f3e9e4
3 changed files with 11 additions and 9 deletions

View File

@@ -10,7 +10,7 @@
**
*************************************************************************
**
** $Id: test_mutex.c,v 1.9 2008/07/10 20:41:50 drh Exp $
** $Id: test_mutex.c,v 1.10 2008/07/17 17:34:20 drh Exp $
*/
#include "tcl.h"
@@ -300,11 +300,13 @@ static int test_alloc_mutex(
int objc,
Tcl_Obj *CONST objv[]
){
#if SQLITE_THREADSAFE
sqlite3_mutex *p = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
char zBuf[100];
sqlite3_mutex_free(p);
sqlite3_snprintf(sizeof(zBuf), zBuf, "%p", p);
Tcl_AppendResult(interp, zBuf, (char*)0);
#endif
return TCL_OK;
}