Changeset 56287 in webkit


Ignore:
Timestamp:
Mar 19, 2010 5:41:19 PM (14 years ago)
Author:
dpranke@chromium.org
Message:

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

Reviewed by Dimitri Glazkov.

Disable the downstream override expectations temporarily to allow
us to test that we've upstreamed everything correctly. Also, stop
looking at the downstream baselines at all (now you will only be
able to update baselines upstream). In theory this should work, but
if we need to we can always add the downstream dirs back in.

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

  • Scripts/webkitpy/layout_tests/port/chromium.py:
  • 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:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r56283 r56287  
     12010-03-19  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Disable the downstream override expectations temporarily to allow
     6        us to test that we've upstreamed everything correctly. Also, stop
     7        looking at the downstream baselines at all (now you will only be
     8        able to update baselines upstream). In theory this should work, but
     9        if we need to we can always add the downstream dirs back in.
     10
     11        https://bugs.webkit.org/show_bug.cgi?id=36396
     12
     13        * Scripts/webkitpy/layout_tests/port/chromium.py:
     14        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
     15        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
     16        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
     17
    1182010-03-19  Dirk Pranke  <dpranke@chromium.org>
    219
     
    1229        Reviewed by Dimitri Glazkov.
    1330
     31>>>>>>> .r56286
    1432        Flip the Chromium ports to look first for the test expectations
    1533        in LayoutTests/platform/chromium and only afterwards look in the
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py

    r56283 r56287  
    167167
    168168    def test_expectations_overrides(self):
    169         overrides_file = self.path_from_chromium_base('webkit', 'tools',
    170             'layout_tests', 'test_expectations.txt')
    171         if os.path.exists(overrides_file):
    172             return file(overrides_file, "r").read()
    173         else:
    174             return None
     169        # FIXME: uncomment this when we're convinced the upstream code
     170        # is working.
     171        #overrides_file = self.path_from_chromium_base('webkit', 'tools',
     172        #    'layout_tests', 'test_expectations.txt')
     173        #if os.path.exists(overrides_file):
     174        #    return file(overrides_file, "r").read()
     175        #else:
     176        #    return None
     177        return None
    175178
    176179    def test_platform_names(self):
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium_linux.py

    r56199 r56287  
    5252
    5353    def baseline_search_path(self):
    54         # FIXME: remove the downstream paths once we've migrated the
    55         # baselines.
    56         return [self._chromium_baseline_path('chromium-linux'),
    57                 self._chromium_baseline_path('chromium-win'),
    58                 self._webkit_baseline_path('chromium-linux'),
     54        return [self._webkit_baseline_path('chromium-linux'),
    5955                self._webkit_baseline_path('chromium-win'),
    6056                self._webkit_baseline_path('chromium'),
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium_mac.py

    r56199 r56287  
    5252
    5353    def baseline_search_path(self):
    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'),
     54        return [self._webkit_baseline_path('chromium-mac'),
    5855                self._webkit_baseline_path('chromium'),
    5956                self._webkit_baseline_path('mac' + self.version()),
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium_win.py

    r56199 r56287  
    5353
    5454    def baseline_search_path(self):
    55         # FIXME: remove the downstream paths once we've migrated the
    56         # baselines.
    5755        dirs = []
    58         if self._name == 'chromium-win-xp':
    59             dirs.append(self._chromium_baseline_path('chromium-win-xp'))
    60         if self._name in ('chromium-win-xp', 'chromium-win-vista'):
    61             dirs.append(self._chromium_baseline_path('chromium-win-vista'))
    62         dirs.append(self._chromium_baseline_path('chromium-win'))
    6356        if self._name == 'chromium-win-xp':
    6457            dirs.append(self._webkit_baseline_path('chromium-win-xp'))
Note: See TracChangeset for help on using the changeset viewer.