commit c7dcf252fd509714d7607d89b7416ffb313d8365
parent 5aaea38d889ae558ea0e9b01b4c5b58f3935b542
Author: Nick Mathewson <nickm@torproject.org>
Date: Tue, 17 Jul 2018 14:33:31 -0400
Merge remote-tracking branch 'ahf-github/bugs/26437'
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/changes/bug26437 b/changes/bug26437
@@ -0,0 +1,3 @@
+ o Testing:
+ - Fix forking tests on Windows when there is a space somewhere in the path.
+ Fixes bug 26437; bugfix on 0.2.2.4-alpha.
diff --git a/src/ext/tinytest.c b/src/ext/tinytest.c
@@ -145,7 +145,7 @@ testcase_run_forked_(const struct testgroup_t *group,
if (opt_verbosity>0)
printf("[forking] ");
- snprintf(buffer, sizeof(buffer), "%s --RUNNING-FORKED %s %s%s",
+ snprintf(buffer, sizeof(buffer), "\"%s\" --RUNNING-FORKED %s %s%s",
commandname, verbosity_flag, group->prefix, testcase->name);
memset(&si, 0, sizeof(si));