Title: [158850] trunk/Tools
Revision
158850
Author
[email protected]
Date
2013-11-07 09:11:34 -0800 (Thu, 07 Nov 2013)

Log Message

Removed QMake related filters
https://bugs.webkit.org/show_bug.cgi?id=123992

Patch by Dániel Bátyai <[email protected]> on 2013-11-07
Reviewed by Csaba Osztrogonác.

* Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
(TestRebaseline.test_rebaseline):
(TestRebaselineExpectations.test_rebaseline_expectations):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (158849 => 158850)


--- trunk/Tools/ChangeLog	2013-11-07 16:21:53 UTC (rev 158849)
+++ trunk/Tools/ChangeLog	2013-11-07 17:11:34 UTC (rev 158850)
@@ -1,3 +1,14 @@
+2013-11-07  Dániel Bátyai  <[email protected]>
+
+        Removed QMake related filters
+        https://bugs.webkit.org/show_bug.cgi?id=123992
+
+        Reviewed by Csaba Osztrogonác.
+
+        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
+        (TestRebaseline.test_rebaseline):
+        (TestRebaselineExpectations.test_rebaseline_expectations):
+
 2013-11-07  Nick Diego Yamane  <[email protected]>
 
         [Efl] Disable LTO when building cairo

Modified: trunk/Tools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py (158849 => 158850)


--- trunk/Tools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py	2013-11-07 16:21:53 UTC (rev 158849)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py	2013-11-07 17:11:34 UTC (rev 158850)
@@ -314,7 +314,7 @@
             oc.restore_output()
             builders._exact_matches = old_exact_matches
 
-        calls = filter(lambda x: x != ['qmake', '-v'] and x[0] != 'perl', self.tool.executive.calls)
+        calls = filter(lambda x: x[0] != 'perl', self.tool.executive.calls)
         self.assertEqual(calls,
             [[['echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'mock/path/to/test.html', '--verbose']]])
 
@@ -336,7 +336,7 @@
         self.command.execute(self.options, [], self.tool)
 
         # FIXME: change this to use the test- ports.
-        calls = filter(lambda x: x != ['qmake', '-v'], self.tool.executive.calls)
+        calls = self.tool.executive.calls
         self.assertEqual(len(calls), 1)
         self.assertEqual(len(calls[0]), 24)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to