Changeset 128874 in webkit


Ignore:
Timestamp:
Sep 18, 2012 4:33:03 AM (12 years ago)
Author:
sergio@webkit.org
Message:

[GTK] run-webkit-tests unable to find TestExpectations for WK2
https://bugs.webkit.org/show_bug.cgi?id=96998

Reviewed by Philippe Normand.

We should look for TestExpectations files in all the locations where
we currently look for Skipped files. This will allow
run-webkit-tests to look for TestExpectations files in
platform/gtk-wk2 and platform/wk2 if the "-2" flag is used.

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

(GtkPort.expectations_files):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r128868 r128874  
     12012-09-18  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        [GTK] run-webkit-tests unable to find TestExpectations for WK2
     4        https://bugs.webkit.org/show_bug.cgi?id=96998
     5
     6        Reviewed by Philippe Normand.
     7
     8        We should look for TestExpectations files in all the locations where
     9        we currently look for Skipped files. This will allow
     10        run-webkit-tests to look for TestExpectations files in
     11        platform/gtk-wk2 and platform/wk2 if the "-2" flag is used.
     12
     13        * Scripts/webkitpy/layout_tests/port/gtk.py:
     14        (GtkPort.expectations_files):
     15
    1162012-09-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
    217
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py

    r128596 r128874  
    3838class GtkPort(Port, PulseAudioSanitizer):
    3939    port_name = "gtk"
     40
     41    def expectations_files(self):
     42        return [self._filesystem.join(self._webkit_baseline_path(d), 'TestExpectations') for d in self._skipped_file_search_paths()]
    4043
    4144    def _port_flag_for_scripts(self):
Note: See TracChangeset for help on using the changeset viewer.