From c0c6c4d8c7c726be8374ea61050e17f0137f0455 Mon Sep 17 00:00:00 2001 From: Ferenc Wagner Date: Mon, 3 May 2004 20:19:13 +0000 Subject: [PATCH] Disable buffering of test output to keep more information in case of a crash. --- include/wine/test.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wine/test.h b/include/wine/test.h index d48396ea3a3..cb3af8a563f 100644 --- a/include/wine/test.h +++ b/include/wine/test.h @@ -313,6 +313,8 @@ int main( int argc, char **argv ) { char *p; + setvbuf (stdout, NULL, _IONBF, 0); + winetest_argc = argc; winetest_argv = argv;