Changeset 139579 in webkit


Ignore:
Timestamp:
Jan 13, 2013 6:22:46 PM (11 years ago)
Author:
dpranke@chromium.org
Message:

[chromium] webkitpy-test: executive.py stringify_args error on the release test bot
https://bugs.webkit.org/show_bug.cgi?id=105380

Reviewed by Eric Seidel.

Fix a regression introduced in r137692 where we were double-encoding
the arguments to popen(); this was only an issue on windows, where
we would try to encode something to mbcs, then try to encode it
to unicode as if the input as ascii.

  • Scripts/webkitpy/common/system/executive.py:

(Executive.run_command):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r139578 r139579  
     12013-01-13  Dirk Pranke  <dpranke@chromium.org>
     2
     3        [chromium] webkitpy-test: executive.py stringify_args error on the release test bot
     4        https://bugs.webkit.org/show_bug.cgi?id=105380
     5
     6        Reviewed by Eric Seidel.
     7
     8        Fix a regression introduced in r137692 where we were double-encoding
     9        the arguments to popen(); this was only an issue on windows, where
     10        we would try to encode something to mbcs, then try to encode it
     11        to unicode as if the input as ascii.
     12
     13        * Scripts/webkitpy/common/system/executive.py:
     14        (Executive.run_command):
     15
    1162013-01-13  Alan Cutter  <alancutter@chromium.org>
    217
  • trunk/Tools/Scripts/webkitpy/common/system/executive.py

    r138264 r139579  
    407407        assert(isinstance(args, list) or isinstance(args, tuple))
    408408        start_time = time.time()
    409         args = self._stringify_args(args)
    410409
    411410        stdin, string_to_communicate = self._compute_stdin(input)
Note: See TracChangeset for help on using the changeset viewer.