[DBGPRINT] --wintest mode: Improve readability of output.

svn path=/trunk/; revision=72248
This commit is contained in:
Mark Jansen 2016-08-17 21:02:49 +00:00
parent 80afa82c59
commit f2efdd0952

View file

@ -44,7 +44,7 @@ int _tmain(int argc, TCHAR ** argv)
/* get available tests */
strcpy(cmd, argv[2]);
strcat(cmd, " --list");
strcat(cmd, " --list");
pPipe = _tpopen(cmd, "r");
if (pPipe != NULL)
{
@ -68,6 +68,8 @@ int _tmain(int argc, TCHAR ** argv)
if (nlptr2)
*nlptr2 = '\0';
puts(psBuffer2);
if (nlptr2)
*nlptr2 = '\n';
OutputDebugStringA(psBuffer2);
}
_pclose(pPipe2);