Changeset 125398 in webkit


Ignore:
Timestamp:
Aug 13, 2012 1:26:15 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][WK2] Replace Skipped list by TestExpectations
https://bugs.webkit.org/show_bug.cgi?id=93796

Patch by Christophe Dumez <Christophe Dumez> on 2012-08-13
Reviewed by Kenneth Rohde Christiansen.

Tools:

Enable cascaded TestExpectations for EFL port so
that we can use TestExpectations in WK2-EFL.

  • Scripts/webkitpy/layout_tests/port/efl.py:

(EflPort._search_paths):
(EflPort):
(EflPort.expectations_files):

LayoutTests:

Replace efl-wk2 Skipped file by TestExpectations now
that we support cascaded TestExpectations in EFL
port.

  • platform/efl-wk2/Skipped: Removed.
  • platform/efl-wk2/TestExpectations: Added.
Location:
trunk
Files:
1 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r125397 r125398  
     12012-08-13  Christophe Dumez  <christophe.dumez@intel.com>
     2
     3        [EFL][WK2] Replace Skipped list by TestExpectations
     4        https://bugs.webkit.org/show_bug.cgi?id=93796
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Replace efl-wk2 Skipped file by TestExpectations now
     9        that we support cascaded TestExpectations in EFL
     10        port.
     11
     12        * platform/efl-wk2/Skipped: Removed.
     13        * platform/efl-wk2/TestExpectations: Added.
     14
    1152012-08-13  Shinya Kawanaka  <shinyak@chromium.org>
    216
  • trunk/Tools/ChangeLog

    r125396 r125398  
     12012-08-13  Christophe Dumez  <christophe.dumez@intel.com>
     2
     3        [EFL][WK2] Replace Skipped list by TestExpectations
     4        https://bugs.webkit.org/show_bug.cgi?id=93796
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Enable cascaded TestExpectations for EFL port so
     9        that we can use TestExpectations in WK2-EFL.
     10
     11        * Scripts/webkitpy/layout_tests/port/efl.py:
     12        (EflPort._search_paths):
     13        (EflPort):
     14        (EflPort.expectations_files):
     15
    1162012-08-13  Peter Gal  <galpeter@inf.u-szeged.hu>
    217
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/efl.py

    r124445 r125398  
    9595        return static_path if self._filesystem.exists(static_path) else dyn_path
    9696
     97    def _search_paths(self):
     98        search_paths = []
     99        if self.get_option('webkit_test_runner'):
     100            search_paths.append(self.port_name + '-wk2')
     101        search_paths.append(self.port_name)
     102        return search_paths
     103
     104    def expectations_files(self):
     105        return list(reversed([self._filesystem.join(self._webkit_baseline_path(p), 'TestExpectations') for p in self._search_paths()]))
     106
    97107    def show_results_html_file(self, results_filename):
    98108        # FIXME: We should find a way to share this implmentation with Gtk,
Note: See TracChangeset for help on using the changeset viewer.