Module: tools Branch: master Commit: 0bcbe8440ec24cc8101d156943304a54d17298c8 URL: https://source.winehq.org/git/tools.git/?a=commit;h=0bcbe8440ec24cc8101d1569...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Mar 24 14:31:02 2021 +0100
testbot/TestLauncher: Remove the revision placeholder from start lines.
Back in the CVS days the start line contained the revision of the test file. But it has been replaced by a placeholder since the switch to Git.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/src/TestLauncher/TestLauncher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/src/TestLauncher/TestLauncher.c b/testbot/src/TestLauncher/TestLauncher.c index dd34a76..58eed76 100644 --- a/testbot/src/TestLauncher/TestLauncher.c +++ b/testbot/src/TestLauncher/TestLauncher.c @@ -231,7 +231,7 @@ int main(int argc, char *argv[]) }
Start = GetTickCount(); - printf("%s:%s start - -\n", TestName, Subtest); + printf("%s:%s start -\n", TestName, Subtest); fflush(stdout);
StartupInfo.cb = sizeof(STARTUPINFOA);