| Index: webkit/tools/test_shell/test_shell_win.cc
|
| ===================================================================
|
| --- webkit/tools/test_shell/test_shell_win.cc (revision 5177)
|
| +++ webkit/tools/test_shell/test_shell_win.cc (working copy)
|
| @@ -250,9 +250,12 @@
|
| std::string md5sum = DumpImage(webFrame, params.pixel_file_name);
|
| printf("#MD5:%s\n", md5sum.c_str());
|
| }
|
| - if (dumped_anything)
|
| + if (dumped_anything) {
|
| printf("#EOF\n");
|
| + fprintf(stderr, "#EOF\n");
|
| + }
|
| fflush(stdout);
|
| + fflush(stderr);
|
| }
|
|
|
| return true;
|
| @@ -384,9 +387,11 @@
|
| // Print a warning to be caught by the layout-test script.
|
| // Note: the layout test driver may or may not recognize
|
| // this as a timeout.
|
| - puts("#TEST_TIMED_OUT\n");
|
| - puts("#EOF\n");
|
| + printf("#TEST_TIMED_OUT\n");
|
| + printf("#EOF\n");
|
| + fprintf(stderr, "#EOF\n");
|
| fflush(stdout);
|
| + fflush(stderr);
|
| TerminateProcess(GetCurrentProcess(), 0);
|
| }
|
| // Finished normally.
|
|
|