Changeset 55341 in webkit


Ignore:
Timestamp:
Feb 26, 2010 8:59:31 PM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Adam Barth.

Change the default port for new-run-webkit-tests when running on
a Mac from 'chromium-mac' to 'mac'. Add a '--chromium' switch to
pick up the default platform-specific version of chromium instead.

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

  • Scripts/webkitpy/layout_tests/port/factory.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r55339 r55341  
     12010-02-26  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Change the default port for new-run-webkit-tests when running on
     6        a Mac from 'chromium-mac' to 'mac'. Add a '--chromium' switch to
     7        pick up the default platform-specific version of chromium instead.
     8
     9        https://bugs.webkit.org/show_bug.cgi?id=35462
     10
     11        * Scripts/webkitpy/layout_tests/port/factory.py:
     12        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
     13
    1142010-02-26  Dirk Pranke  <dpranke@chromium.org>
    215
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/factory.py

    r55268 r55341  
    4545            port_to_use = 'chromium-linux'
    4646        elif sys.platform == 'darwin':
    47             port_to_use = 'chromium-mac'
     47            if options.chromium:
     48                port_to_use = 'chromium-mac'
     49            else:
     50                port_to_use = 'mac'
    4851
    4952    if port_to_use == 'test':
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

    r55268 r55341  
    16251625                             action="store_true", default=False,
    16261626                             help="don't run layout_test_helper")
     1627    option_parser.add_option("", "--chromium",
     1628                             action="store_true", default=False,
     1629                             help="use the Chromium port")
    16271630    return option_parser.parse_args(args)
    16281631
Note: See TracChangeset for help on using the changeset viewer.