Changeset 158850 in webkit


Ignore:
Timestamp:
Nov 7, 2013 9:11:34 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Dániel Bátyai <Batyai.Daniel@stud.u-szeged.hu> on 2013-11-07
Reviewed by Csaba Osztrogonác.

  • Scripts/webkitpy/tool/commands/rebaseline_unittest.py:

(TestRebaseline.test_rebaseline):
(TestRebaselineExpectations.test_rebaseline_expectations):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r158845 r158850  
     12013-11-07  Dániel Bátyai  <Batyai.Daniel@stud.u-szeged.hu>
     2
     3        Removed QMake related filters
     4        https://bugs.webkit.org/show_bug.cgi?id=123992
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
     9        (TestRebaseline.test_rebaseline):
     10        (TestRebaselineExpectations.test_rebaseline_expectations):
     11
    1122013-11-07  Nick Diego Yamane  <nick.yamane@openbossa.org>
    213
  • trunk/Tools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py

    r157831 r158850  
    315315            builders._exact_matches = old_exact_matches
    316316
    317         calls = filter(lambda x: x != ['qmake', '-v'] and x[0] != 'perl', self.tool.executive.calls)
     317        calls = filter(lambda x: x[0] != 'perl', self.tool.executive.calls)
    318318        self.assertEqual(calls,
    319319            [[['echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'mock/path/to/test.html', '--verbose']]])
     
    337337
    338338        # FIXME: change this to use the test- ports.
    339         calls = filter(lambda x: x != ['qmake', '-v'], self.tool.executive.calls)
     339        calls = self.tool.executive.calls
    340340        self.assertEqual(len(calls), 1)
    341341        self.assertEqual(len(calls[0]), 24)
Note: See TracChangeset for help on using the changeset viewer.