Changeset 121878 in webkit


Ignore:
Timestamp:
Jul 4, 2012 8:48:03 PM (12 years ago)
Author:
yosin@chromium.org
Message:

[Tools] webkit_unittest.py got assertion
https://bugs.webkit.org/show_bug.cgi?id=90579

Reviewed by Hajime Morita.

This patch updates expectation of assertion in test_skipped_directories_for_symbols().
r121874 added new (exclude) directory (inspector/styles/variables), however it didn't
update one of two assertions.

  • Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r121873 r121878  
     12012-07-04  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Tools] webkit_unittest.py got assertion
     4        https://bugs.webkit.org/show_bug.cgi?id=90579
     5
     6        Reviewed by Hajime Morita.
     7
     8        This patch updates expectation of assertion in test_skipped_directories_for_symbols().
     9        r121874 added new (exclude) directory (inspector/styles/variables), however it didn't
     10        update one of two assertions.
     11
     12        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
     13
    1142012-07-04  Balazs Ankes  <bank@inf.u-szeged.hu>
    215
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit_unittest.py

    r121874 r121878  
    114114"""
    115115        # Note 'compositing' is not in the list of skipped directories (hence the parsing of GraphicsLayer worked):
    116         expected_directories = set(['mathml', 'transforms/3d', 'compositing/webgl', 'fast/canvas/webgl', 'animations/3d', 'mhtml', 'http/tests/canvas/webgl', 'fast/css/variables'])
     116        expected_directories = set(['mathml', 'transforms/3d', 'compositing/webgl', 'fast/canvas/webgl', 'animations/3d', 'mhtml', 'http/tests/canvas/webgl', 'fast/css/variables', 'inspector/styles/variables'])
    117117        result_directories = set(TestWebKitPort(symbols_string, None)._skipped_tests_for_unsupported_features(test_list=['mathml/foo.html']))
    118118        self.assertEqual(result_directories, expected_directories)
Note: See TracChangeset for help on using the changeset viewer.