Changeset 70643 in webkit


Ignore:
Timestamp:
Oct 27, 2010 7:37:32 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-27 Gabor Rapcsanyi <rgabor@inf.u-szeged.hu>

Reviewed by Csaba Osztrogonác.

[NRWT] Add platform specific baseline search paths for Qt port
https://bugs.webkit.org/show_bug.cgi?id=48428

  • Scripts/webkitpy/layout_tests/port/qt.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r70640 r70643  
     12010-10-27  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
     2
     3        Reviewed by Csaba Osztrogonác.
     4
     5        [NRWT] Add platform specific baseline search paths for Qt port
     6        https://bugs.webkit.org/show_bug.cgi?id=48428
     7
     8        * Scripts/webkitpy/layout_tests/port/qt.py:
     9
    1102010-10-27  Adam Roben  <aroben@apple.com>
    211
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/qt.py

    r70230 r70643  
    3232import os
    3333import signal
     34import sys
    3435
    3536import webkit
     
    4647        kwargs.setdefault('port_name', 'qt')
    4748        WebKitPort.__init__(self, **kwargs)
     49
     50    def baseline_search_path(self):
     51        port_names = []
     52        if sys.platform == 'linux2':
     53            port_names.append("qt-linux")
     54        elif sys.platform in ('win32', 'cygwin'):
     55            port_names.append("qt-win")
     56        elif sys.platform == 'darwin':
     57            port_names.append("qt-mac")
     58        port_names.append("qt")
     59        return map(self._webkit_baseline_path, port_names)
    4860
    4961    def _tests_for_other_platforms(self):
Note: See TracChangeset for help on using the changeset viewer.