Changeset 58044 in webkit


Ignore:
Timestamp:
Apr 21, 2010 8:16:51 PM (14 years ago)
Author:
eric@webkit.org
Message:

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

Unreviewed, just adding missing ":" in python file.

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

new-run-webkit-tests --chromium was borked.

  • Scripts/webkitpy/layout_tests/port/chromium.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r58036 r58044  
     12010-04-21  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed, just adding missing ":" in python file.
     4
     5        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
     6        https://bugs.webkit.org/show_bug.cgi?id=37765
     7
     8        new-run-webkit-tests --chromium was borked.
     9
     10        * Scripts/webkitpy/layout_tests/port/chromium.py:
     11
    1122010-04-21  Eric Seidel  <eric@webkit.org>
    213
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py

    r58036 r58044  
    210210        test_expectations file. See test_expectations.py for more details."""
    211211        expectations_path = self.path_to_test_expectations_file()
    212         with codecs.open(expectations_file, "r", "utf-8") as file:
     212        with codecs.open(expectations_path, "r", "utf-8") as file:
    213213            return file.read()
    214214
    215215    def test_expectations_overrides(self):
    216216        try:
    217             overrides_file = self.path_from_chromium_base('webkit', 'tools',
     217            overrides_path = self.path_from_chromium_base('webkit', 'tools',
    218218                'layout_tests', 'test_expectations.txt')
    219219        except AssertionError:
    220220            return None
    221         if not os.path.exists(overrides_file):
     221        if not os.path.exists(overrides_path):
    222222            return None
    223         with codecs.open(overrides_file, "r", "utf-8") as file
     223        with codecs.open(overrides_path, "r", "utf-8") as file:
    224224            return file.read()
    225225
Note: See TracChangeset for help on using the changeset viewer.