Modified: trunk/Tools/ChangeLog (121430 => 121431)
--- trunk/Tools/ChangeLog 2012-06-28 14:33:11 UTC (rev 121430)
+++ trunk/Tools/ChangeLog 2012-06-28 14:43:16 UTC (rev 121431)
@@ -1,3 +1,14 @@
+2012-06-28 Csaba Osztrogonác <[email protected]>
+
+ [Qt][NRWT] Fix baseline and skipped file search path.
+ https://bugs.webkit.org/show_bug.cgi?id=89882
+
+ Unreviewed trivial typo fix after r121430.
+
+ * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
+ (QtPortTest._assert_search_path):
+ (QtPortTest._assert_skipped_path):
+
2012-06-28 János Badics <[email protected]>
[Qt][NRWT] Fix baseline and skipped file search path.
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/qt_unittest.py (121430 => 121431)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/qt_unittest.py 2012-06-28 14:33:11 UTC (rev 121430)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/qt_unittest.py 2012-06-28 14:43:16 UTC (rev 121431)
@@ -58,7 +58,7 @@
{'search_paths':['qt-5.0-wk1', 'qt-5.0', 'qt-linux', 'qt'], 'os_name':'linux', 'use_webkit2':False, 'qt_version':'5.0'},
]
- def _assert_search_path(self, search_paths, os_name=None, use_webkit2=False, qt_version='4.8'):
+ def _assert_search_path(self, search_paths, os_name, use_webkit2=False, qt_version='4.8'):
# FIXME: Port constructors should not "parse" the port name, but
# rather be passed components (directly or via setters). Once
# we fix that, this method will need a re-write.
@@ -70,7 +70,7 @@
absolute_search_paths = map(port._webkit_baseline_path, search_paths)
self.assertEquals(port.baseline_search_path(), absolute_search_paths)
- def _assert_skipped_path(self, search_paths, os_name=None, use_webkit2=False, qt_version='4.8'):
+ def _assert_skipped_path(self, search_paths, os_name, use_webkit2=False, qt_version='4.8'):
host = MockSystemHost(os_name=os_name)
host.executive = MockExecutive2(self._qt_version(qt_version))
port_name = 'qt-' + os_name