Changeset 69843 in webkit


Ignore:
Timestamp:
Oct 15, 2010 1:20:54 AM (13 years ago)
Author:
abarth@webkit.org
Message:

2010-10-15 Adam Barth <abarth@webkit.org>

Reviewed by Adam Barth.

test-webkitpy fails on Linux
https://bugs.webkit.org/show_bug.cgi?id=47713

The old code failed on Linux because the MacPort tries to read
something out of platform that doesn't make sense on Linux.

  • Scripts/webkitpy/tool/mocktool.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r69839 r69843  
     12010-10-15  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        test-webkitpy fails on Linux
     6        https://bugs.webkit.org/show_bug.cgi?id=47713
     7
     8        The old code failed on Linux because the MacPort tries to read
     9        something out of platform that doesn't make sense on Linux.
     10
     11        * Scripts/webkitpy/tool/mocktool.py:
     12
    1132010-10-14  Balazs Kelemen  <kbalazs@webkit.org>
    214
  • trunk/WebKitTools/Scripts/webkitpy/tool/mocktool.py

    r69829 r69843  
    3131
    3232from webkitpy.common.config.committers import CommitterList, Reviewer
    33 from webkitpy.common.config.ports import MacPort
    3433from webkitpy.common.checkout.commitinfo import CommitInfo
    3534from webkitpy.common.checkout.scm import CommitMessage
     
    648647
    649648    def port(self):
    650         # FIXME: Consider using a mock here.
    651         return MacPort
     649        return Mock()
    652650
    653651
Note: See TracChangeset for help on using the changeset viewer.