Title: [226837] trunk/Tools
Revision
226837
Author
[email protected]
Date
2018-01-11 18:19:25 -0800 (Thu, 11 Jan 2018)

Log Message

Unreviewed, rolling out r226816.

This change broke LayoutTests on the bots.

Reverted changeset:

"run-webkit-tests fails when there is a curly brace in Xcode
build output"
https://bugs.webkit.org/show_bug.cgi?id=181254
https://trac.webkit.org/changeset/226816

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (226836 => 226837)


--- trunk/Tools/ChangeLog	2018-01-12 02:13:53 UTC (rev 226836)
+++ trunk/Tools/ChangeLog	2018-01-12 02:19:25 UTC (rev 226837)
@@ -1,3 +1,16 @@
+2018-01-11  Ryan Haddad  <[email protected]>
+
+        Unreviewed, rolling out r226816.
+
+        This change broke LayoutTests on the bots.
+
+        Reverted changeset:
+
+        "run-webkit-tests fails when there is a curly brace in Xcode
+        build output"
+        https://bugs.webkit.org/show_bug.cgi?id=181254
+        https://trac.webkit.org/changeset/226816
+
 2018-01-11  Jonathan Bedard  <[email protected]>
 
         webkitpy: Fix flakey webserver tests

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/views/metered_stream.py (226836 => 226837)


--- trunk/Tools/Scripts/webkitpy/layout_tests/views/metered_stream.py	2018-01-12 02:13:53 UTC (rev 226836)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/views/metered_stream.py	2018-01-12 02:19:25 UTC (rev 226837)
@@ -105,7 +105,7 @@
         else:
             msg = self._ensure_newline(txt)
 
-        self._stream.write(msg.encode('utf-8'))
+        self._stream.write(msg)
 
     def writeln(self, txt, now=None, pid=None):
         self.write(self._ensure_newline(txt), now, pid)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to