Changeset 54452 in webkit


Ignore:
Timestamp:
Feb 5, 2010 4:41:31 PM (14 years ago)
Author:
dpranke@chromium.org
Message:

2010-02-03 Dirk Pranke <dpranke@chromium.org>

Reviewed by Eric Seidel.

Add a simple test implementation and the WebKit Mac implementation
for the layout_tests/port package. Also add a simple test driver of
that interface.

https://bugs.webkit.org/show_bug.cgi?id=34511

  • Scripts/webkitpy/layout_tests/driver_test.py: Added.
  • Scripts/webkitpy/layout_tests/port/init.py:
  • Scripts/webkitpy/layout_tests/port/mac.py: Added.
  • Scripts/webkitpy/layout_tests/port/test.py: Added.
Location:
trunk/WebKitTools
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r54449 r54452  
     12010-02-03  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Add a simple test implementation and the WebKit Mac implementation
     6        for the layout_tests/port package. Also add a simple test driver of
     7        that interface.
     8
     9        https://bugs.webkit.org/show_bug.cgi?id=34511
     10
     11        * Scripts/webkitpy/layout_tests/driver_test.py: Added.
     12        * Scripts/webkitpy/layout_tests/port/__init__.py:
     13        * Scripts/webkitpy/layout_tests/port/mac.py: Added.
     14        * Scripts/webkitpy/layout_tests/port/test.py: Added.
     15
    1162010-02-03  Dirk Pranke  <dpranke@chromium.org>
    217
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/__init__.py

    r54449 r54452  
    3939        port_to_use = 'chromium-mac'
    4040
    41     if port_to_use.startswith('chromium-mac'):
     41    if port_to_use == 'test':
     42        import test
     43        return test.TestPort(port_name, options)
     44    elif port_to_use.startswith('mac'):
     45        import mac
     46        return mac.MacPort(port_name, options)
     47    elif port_to_use.startswith('chromium-mac'):
    4248        import chromium_mac
    4349        return chromium_mac.ChromiumMacPort(port_name, options)
Note: See TracChangeset for help on using the changeset viewer.