From 3aa6069abf0e36eb7d41eb078fadf7299b7a7918 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Fri, 9 Mar 2012 04:37:05 +0100 Subject: [PATCH] Windows test runner: show process name instead of test name If a test failed we would previously see: Output from process `test_foo`: blah Output from process `test_foo`: (nothing) This commit changes it to: Output from process `test_foo`: blah Output from process `foo_helper`: (nothing) --- test/runner-win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner-win.c b/test/runner-win.c index 6b6d500c..d2a986a7 100644 --- a/test/runner-win.c +++ b/test/runner-win.c @@ -135,7 +135,7 @@ int process_start(char *name, char *part, process_info_t *p) { p->stdio_in = nul; p->stdio_out = file; p->process = pi.hProcess; - p->name = name; + p->name = part; return 0;