mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Have testfixture invoke C routine Zipvfs_Init() when creating a new interpreter if SQLITE_ENABLE_ZIPVFS is defined.
FossilOrigin-Name: 430635dacfa818e8266a88214aaf60c77862de1c
This commit is contained in:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
||||
C Fix\ssome\soff-by-one\serrors\sin\sthe\scomments\sfor\sAPI\sfunctions\screate_function()\sand\svalue_blob().\sNo\schanges\sto\scode\sor\stests.
|
||||
D 2010-12-29T10:49:47
|
||||
C Have\stestfixture\sinvoke\sC\sroutine\sZipvfs_Init()\swhen\screating\sa\snew\sinterpreter\sif\sSQLITE_ENABLE_ZIPVFS\sis\sdefined.
|
||||
D 2010-12-29T18:24:39
|
||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||
F Makefile.in de6498556d536ae60bb8bb10e8c1ba011448658c
|
||||
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
||||
@@ -182,7 +182,7 @@ F src/sqliteInt.h 3ef5fc89a4c9755a08a68de107493785a284e27c
|
||||
F src/sqliteLimit.h a17dcd3fb775d63b64a43a55c54cb282f9726f44
|
||||
F src/status.c 4997380fbb915426fef9e500b4872e79c99267fc
|
||||
F src/table.c 2cd62736f845d82200acfa1287e33feb3c15d62e
|
||||
F src/tclsqlite.c 77c5c4b8ac7b2d94ee480e1ad626fbd921d948e4
|
||||
F src/tclsqlite.c 549859dc2c143f3deb6a92636a2d27973652c164
|
||||
F src/test1.c 397809a3069c171a507a49b6f6edfc4255b0afbc
|
||||
F src/test2.c 80d323d11e909cf0eb1b6fbb4ac22276483bcf31
|
||||
F src/test3.c 056093cfef69ff4227a6bdb9108564dc7f45e4bc
|
||||
@@ -894,7 +894,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
||||
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
|
||||
P 7088d9450f403f12f67eed558e368573101245d6
|
||||
R 41d13c42705e4dca92c02cfd9c746865
|
||||
P 7ded90baeb75db5af83345cd2c31211cbee1e91b
|
||||
R d42c36fbd6ce68590e6e0dd8ec4c5c18
|
||||
U dan
|
||||
Z 37366d27149e755f493600c08e0d3d27
|
||||
Z 8593c64ef1af55c2ba01b9032057e1e5
|
||||
|
@@ -1 +1 @@
|
||||
7ded90baeb75db5af83345cd2c31211cbee1e91b
|
||||
430635dacfa818e8266a88214aaf60c77862de1c
|
@@ -3582,6 +3582,11 @@ static void init_all(Tcl_Interp *interp){
|
||||
extern int Sqlitemultiplex_Init(Tcl_Interp*);
|
||||
extern int SqliteSuperlock_Init(Tcl_Interp*);
|
||||
|
||||
#ifdef SQLITE_ENABLE_ZIPVFS
|
||||
extern int Zipvfs_Init(Tcl_Interp*);
|
||||
Zipvfs_Init(interp);
|
||||
#endif
|
||||
|
||||
Sqliteconfig_Init(interp);
|
||||
Sqlitetest1_Init(interp);
|
||||
Sqlitetest2_Init(interp);
|
||||
|
Reference in New Issue
Block a user