Changeset 53538 in webkit


Ignore:
Timestamp:
Jan 20, 2010 3:26:08 AM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-01-20 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Teach check-webkit-style about QGVLauncher
https://bugs.webkit.org/show_bug.cgi?id=33890

Remove false positives found in
https://bugs.webkit.org/show_bug.cgi?id=33708

  • Scripts/webkitpy/style/cpp_style.py:
  • Scripts/webkitpy/style/cpp_style_unittest.py:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r53537 r53538  
     12010-01-20  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Teach check-webkit-style about QGVLauncher
     6        https://bugs.webkit.org/show_bug.cgi?id=33890
     7
     8        Remove false positives found in
     9        https://bugs.webkit.org/show_bug.cgi?id=33708
     10
     11        * Scripts/webkitpy/style/cpp_style.py:
     12        * Scripts/webkitpy/style/cpp_style_unittest.py:
     13
    1142010-01-20  Eric Seidel  <eric@webkit.org>
    215
  • trunk/WebKitTools/Scripts/webkitpy/style/cpp_style.py

    r53534 r53538  
    20952095    """
    20962096
    2097     if filename.find('WebKitTools/WebKitAPITest/') >= 0:
     2097    if (filename.find('WebKitTools/WebKitAPITest/') >= 0
     2098        or filename.find('WebKit/qt/QGVLauncher/') >= 0):
    20982099        # Files in this directory are consumers of the WebKit API and
    20992100        # therefore do not follow the same header including discipline as
  • trunk/WebKitTools/Scripts/webkitpy/style/cpp_style_unittest.py

    r53534 r53538  
    20482048                                         '')
    20492049
     2050    def test_webkit_api_test_excluded(self):
     2051        self.assert_language_rules_check('WebKit/qt/QGVLauncher/main.cpp',
     2052                                         '#include "foo.h"\n',
     2053                                         '')
     2054
    20502055    def test_check_line_break_after_own_header(self):
    20512056        self.assert_language_rules_check('foo.cpp',
Note: See TracChangeset for help on using the changeset viewer.