Changeset 66761 in webkit


Ignore:
Timestamp:
Sep 3, 2010 12:44:40 PM (14 years ago)
Author:
Dimitri Glazkov
Message:

2010-09-03 Dimitri Glazkov <Dimitri Glazkov>

Reviewed by Adam Barth.

Fix reading configuraiton in NWRT to work on Windows.
https://bugs.webkit.org/show_bug.cgi?id=45180

  • Scripts/webkitpy/layout_tests/port/base.py: Added 'perl' argument, because Windows doesn't know what to do

with the file otherwise.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r66751 r66761  
     12010-09-03  Dimitri Glazkov  <dglazkov@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Fix reading configuraiton in NWRT to work on Windows.
     6        https://bugs.webkit.org/show_bug.cgi?id=45180
     7
     8        * Scripts/webkitpy/layout_tests/port/base.py: Added 'perl' argument, because Windows doesn't know what to do
     9            with the file otherwise.
     10
    1112010-09-03  Chris Rogers  <crogers@google.com>
    212
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/base.py

    r66727 r66761  
    637637
    638638    def _webkit_build_directory(self, args):
    639         args = [self.script_path("webkit-build-directory")] + args
     639        args = ["perl", self.script_path("webkit-build-directory")] + args
    640640        return self._executive.run_command(args).rstrip()
    641641
Note: See TracChangeset for help on using the changeset viewer.