aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-04-12 01:04:36 +0000
committerdrh <drh@noemail.net>2013-04-12 01:04:36 +0000
commit739ee7ffac34ef1b93c4560f34dc272d3864f45f (patch)
treecdf7e713683b90f4c937b271abcf96ecf7d27b69
parentfdd72c9a2fc9b4f1d3eb256830dc055dcdbad4e0 (diff)
downloadsqlite-739ee7ffac34ef1b93c4560f34dc272d3864f45f.tar.gz
sqlite-739ee7ffac34ef1b93c4560f34dc272d3864f45f.zip
In mptester: improve the way that child processes are dispatched. Pass
the --vfs option through to children. Log the command used to start child processes when the tracing level is high enough. FossilOrigin-Name: 55718ae3462b2b6e0774d49e1c4c74143bc9e3a5
-rw-r--r--manifest14
-rw-r--r--manifest.uuid2
-rw-r--r--mptest/mptest.c22
3 files changed, 21 insertions, 17 deletions
diff --git a/manifest b/manifest
index 347b207be..1fbc9f7b6 100644
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C For\sthe\smulti-process\stester\son\sWin32,\smake\suse\sof\sthe\sGetCurrentProcessId\sAPI.
-D 2013-04-11T21:13:10.779
+C In\smptester:\simprove\sthe\sway\sthat\schild\sprocesses\sare\sdispatched.\s\sPass\nthe\s--vfs\soption\sthrough\sto\schildren.\s\sLog\sthe\scommand\sused\sto\sstart\nchild\sprocesses\swhen\sthe\stracing\slevel\sis\shigh\senough.
+D 2013-04-12T01:04:36.558
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 3dd3fcb87b70c78d99b2c8a03e44ec86d6ca9ce2
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -114,7 +114,7 @@ F mptest/config01.test 3f4ddeb152a4f83872f0fa7fcb48d9fd609893da
F mptest/config02.test 962913ed2b537d60de4126db7fe54716865cdd22
F mptest/crash01.test a5f31998ed48de8267d6620e8af107ec148e5f12
F mptest/crash02.subtest f4ef05adcd15d60e5d2bd654204f2c008b519df8
-F mptest/mptest.c 53066ffe4ae6f0c4de451cc77985b88d0fee2aec
+F mptest/mptest.c 2a263e88f18762ac5d7fb56749d2d2ea8e22cb93
F mptest/multiwrite01.test 81fbc17657964889b60750bd7bbb1deffe8f4d42
F spec.template 86a4a43b99ebb3e75e6b9a735d5fd293a24e90ca
F sqlite.pc.in 42b7bf0d02e08b9e77734a47798d1a55a9e0716b
@@ -1050,7 +1050,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
-P dd3510bb20ade173c81c9874c05466011c8a249d
-R 69eb3039bde7025dc2da94e69ac2fbdc
-U mistachkin
-Z 5b9c93ebe8aafa80e045145422e5fe06
+P f1b524b9d9ea3db96d54ac55c39f15e6879085bd
+R 42c876901a232f69407f221f508add46
+U drh
+Z f52bc6984c23b912a4265566462deba4
diff --git a/manifest.uuid b/manifest.uuid
index 0a9b5274e..6692706ce 100644
--- a/manifest.uuid
+++ b/manifest.uuid
@@ -1 +1 @@
-f1b524b9d9ea3db96d54ac55c39f15e6879085bd \ No newline at end of file
+55718ae3462b2b6e0774d49e1c4c74143bc9e3a5 \ No newline at end of file
diff --git a/mptest/mptest.c b/mptest/mptest.c
index 33f4a3fa7..e47be5ae6 100644
--- a/mptest/mptest.c
+++ b/mptest/mptest.c
@@ -48,10 +48,8 @@
/* The suffix to append to the child command lines, if any */
#if defined(_WIN32)
-# define CMDLINE_SUFFIX ""
# define GETPID (int)GetCurrentProcessId
#else
-# define CMDLINE_SUFFIX "&"
# define GETPID getpid
#endif
@@ -629,14 +627,20 @@ static void startClient(int iClient){
if( sqlite3_changes(g.db) ){
char *zSys;
int rc;
- zSys = sqlite3_mprintf(
- "%s \"%s\" --client %d --trace %d %s%s%s",
- g.argv0, g.zDbFile, iClient, g.iTrace,
- g.bSqlTrace ? "--sqltrace " : "",
- g.bSync ? "--sync " : "",
- CMDLINE_SUFFIX
- );
+ zSys = sqlite3_mprintf("%s \"%s\" --client %d --trace %d",
+ g.argv0, g.zDbFile, iClient, g.iTrace);
+ if( g.bSqlTrace ){
+ zSys = sqlite3_mprintf("%z --sqltrace", zSys);
+ }
+ if( g.bSync ){
+ zSys = sqlite3_mprintf("%z --sync", zSys);
+ }
+ if( g.zVfs ){
+ zSys = sqlite3_mprintf("%z --vfs \"%s\"", zSys, g.zVfs);
+ }
+ if( g.iTrace>=2 ) logMessage("system('%q')", zSys);
#if !defined(_WIN32)
+ zSys = sqlite3_mprintf("%z &", zSys);
rc = system(zSys);
if( rc ) errorMessage("system() fails with error code %d", rc);
#else