Changeset 58055 in webkit


Ignore:
Timestamp:
Apr 21, 2010 10:49:07 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-21 Eric Seidel <eric@webkit.org>

Unreviewed. Attempt one more time to fix NRWT for chromium.

REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
https://bugs.webkit.org/show_bug.cgi?id=37765

I'm debugging in the blind because I don't have a chromium
build on this laptop.

  • Scripts/webkitpy/layout_tests/port/chromium.py:
    • Apply the previous fix to a second caller.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r58054 r58055  
     12010-04-21  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed.  Attempt one more time to fix NRWT for chromium.
     4
     5        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
     6        https://bugs.webkit.org/show_bug.cgi?id=37765
     7
     8        I'm debugging in the blind because I don't have a chromium
     9        build on this laptop.
     10
     11        * Scripts/webkitpy/layout_tests/port/chromium.py:
     12         - Apply the previous fix to a second caller.
     13
    1142010-04-21  Eric Seidel  <eric@webkit.org>
    215
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py

    r58054 r58055  
    372372            try:
    373373                line = self._proc.stdout.readline()
     374                # As far as I can tell, all output from test_shell
     375                # is text output, thus we know it's all utf-8.
     376                line = line.decode("utf-8")
    374377            except IOError, e:
    375378                _log.error("IOError while reading: " + str(e))
Note: See TracChangeset for help on using the changeset viewer.