Changeset 56199 in webkit


Ignore:
Timestamp:
Mar 18, 2010 3:45:20 PM (14 years ago)
Author:
dpranke@chromium.org
Message:

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

Reviewed by Dimitri Glazkov.

Add upstream LayoutTests/platform/chromium* directories to the
baseline search path for new-run-webkit-tests in preparation for
upstreaming all of the Chromium baselines. Note that this does
not actually create the directories themselves, but that's okay.

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

  • Scripts/webkitpy/layout_tests/port/chromium_linux.py:
  • Scripts/webkitpy/layout_tests/port/chromium_mac.py:
  • Scripts/webkitpy/layout_tests/port/chromium_win.py:
Location:
trunk/WebKitTools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r56198 r56199  
     12010-03-18  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Add upstream LayoutTests/platform/chromium* directories to the
     6        baseline search path for new-run-webkit-tests in preparation for
     7        upstreaming all of the Chromium baselines. Note that this does
     8        not actually create the directories themselves, but that's okay.
     9
     10        https://bugs.webkit.org/show_bug.cgi?id=36324
     11
     12        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
     13        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
     14        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
     15
    1162010-03-18  Alexey Proskuryakov  <ap@apple.com>
    217
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium_linux.py

    r55903 r56199  
    5252
    5353    def baseline_search_path(self):
    54         return [self.baseline_path(),
     54        # FIXME: remove the downstream paths once we've migrated the
     55        # baselines.
     56        return [self._chromium_baseline_path('chromium-linux'),
    5557                self._chromium_baseline_path('chromium-win'),
     58                self._webkit_baseline_path('chromium-linux'),
     59                self._webkit_baseline_path('chromium-win'),
     60                self._webkit_baseline_path('chromium'),
    5661                self._webkit_baseline_path('win'),
    5762                self._webkit_baseline_path('mac')]
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium_mac.py

    r55603 r56199  
    5252
    5353    def baseline_search_path(self):
    54         return [self.baseline_path(),
     54        # FIXME: remove the downstream paths once we've migrated the
     55        # baselines.
     56        return [self._chromium_baseline_path('chromium-mac'),
     57                self._webkit_baseline_path('chromium-mac'),
     58                self._webkit_baseline_path('chromium'),
    5559                self._webkit_baseline_path('mac' + self.version()),
    5660                self._webkit_baseline_path('mac')]
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium_win.py

    r55603 r56199  
    5353
    5454    def baseline_search_path(self):
     55        # FIXME: remove the downstream paths once we've migrated the
     56        # baselines.
    5557        dirs = []
    5658        if self._name == 'chromium-win-xp':
    57             dirs.append(self._chromium_baseline_path(self._name))
     59            dirs.append(self._chromium_baseline_path('chromium-win-xp'))
    5860        if self._name in ('chromium-win-xp', 'chromium-win-vista'):
    5961            dirs.append(self._chromium_baseline_path('chromium-win-vista'))
    6062        dirs.append(self._chromium_baseline_path('chromium-win'))
     63        if self._name == 'chromium-win-xp':
     64            dirs.append(self._webkit_baseline_path('chromium-win-xp'))
     65        if self._name in ('chromium-win-xp', 'chromium-win-vista'):
     66            dirs.append(self._webkit_baseline_path('chromium-win-vista'))
     67        dirs.append(self._webkit_baseline_path('chromium-win'))
     68        dirs.append(self._webkit_baseline_path('chromium'))
    6169        dirs.append(self._webkit_baseline_path('win'))
    6270        dirs.append(self._webkit_baseline_path('mac'))
Note: See TracChangeset for help on using the changeset viewer.