Changeset 167426 in webkit


Ignore:
Timestamp:
Apr 17, 2014 7:41:42 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Make run-webkit-tests always use WKTR
https://bugs.webkit.org/show_bug.cgi?id=131737

Patch by Adrian Perez de Castro <Adrian Perez de Castro> on 2014-04-17
Reviewed by Darin Adler.

Now that the GTK+ port only has support for WebKit2, instruct
run-webkit-tests to always use WKTR. This avoids needing to pass
flag "-2" every time.

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(_set_up_derived_options): Always set webkit_test_runner when
the platform is GTK+.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r167422 r167426  
     12014-04-17  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK] Make run-webkit-tests always use WKTR
     4        https://bugs.webkit.org/show_bug.cgi?id=131737
     5
     6        Reviewed by Darin Adler.
     7
     8        Now that the GTK+ port only has support for WebKit2, instruct
     9        run-webkit-tests to always use WKTR. This avoids needing to pass
     10        flag "-2" every time.
     11
     12        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
     13        (_set_up_derived_options): Always set webkit_test_runner when
     14        the platform is GTK+.
     15
    1162014-04-17  Brendan Long  <b.long@cablelabs.com>
    217
  • trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

    r166515 r167426  
    383383        options.verbose = True
    384384
     385    # The GTK+ port only support WebKit2 so it always uses WKTR.
     386    if options.platform == "gtk":
     387        options.webkit_test_runner = True
     388
    385389
    386390def run(port, options, args, logging_stream):
Note: See TracChangeset for help on using the changeset viewer.