Title: [202226] trunk/Tools
Revision
202226
Author
[email protected]
Date
2016-06-20 00:07:04 -0700 (Mon, 20 Jun 2016)

Log Message

WebKitTestRunner: Missing \n at the line of "#PROCESS UNRESPONSIVE"
https://bugs.webkit.org/show_bug.cgi?id=158931

Patch by Fujii Hironori <[email protected]> on 2016-06-20
Reviewed by Alexey Proskuryakov.

* WebKitTestRunner/TestInvocation.cpp:
(WTR::TestInvocation::dumpWebProcessUnresponsiveness): Appended missing \n at the end of line.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (202225 => 202226)


--- trunk/Tools/ChangeLog	2016-06-20 06:56:22 UTC (rev 202225)
+++ trunk/Tools/ChangeLog	2016-06-20 07:07:04 UTC (rev 202226)
@@ -1,3 +1,13 @@
+2016-06-20  Fujii Hironori  <[email protected]>
+
+        WebKitTestRunner: Missing \n at the line of "#PROCESS UNRESPONSIVE"
+        https://bugs.webkit.org/show_bug.cgi?id=158931
+
+        Reviewed by Alexey Proskuryakov.
+
+        * WebKitTestRunner/TestInvocation.cpp:
+        (WTR::TestInvocation::dumpWebProcessUnresponsiveness): Appended missing \n at the end of line.
+
 2016-06-17  Alexey Proskuryakov  <[email protected]>
 
         Add test expectations for macOS Sierra

Modified: trunk/Tools/WebKitTestRunner/TestInvocation.cpp (202225 => 202226)


--- trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2016-06-20 06:56:22 UTC (rev 202225)
+++ trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2016-06-20 07:07:04 UTC (rev 202226)
@@ -194,7 +194,7 @@
     pid_t pid = WKPageGetProcessIdentifier(TestController::singleton().mainWebView()->page());
     sprintf(errorMessageToStderr, "#PROCESS UNRESPONSIVE - %s (pid %ld)\n", TestController::webProcessName(), static_cast<long>(pid));
 #else
-    sprintf(errorMessageToStderr, "#PROCESS UNRESPONSIVE - %s", TestController::webProcessName());
+    sprintf(errorMessageToStderr, "#PROCESS UNRESPONSIVE - %s\n", TestController::webProcessName());
 #endif
 
     dump(errorMessage, errorMessageToStderr, true);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to