Changeset 53539 in webkit


Ignore:
Timestamp:
Jan 20, 2010 3:28:04 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 WebKit/gtk/tests
https://bugs.webkit.org/show_bug.cgi?id=33892

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

  • 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

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

    r53538 r53539  
    29372937    if (filename.find('WebKit/qt/Api/') >= 0
    29382938        or filename.find('JavaScriptCore/qt/api/') >= 0
    2939         or filename.find('WebKit/qt/tests/') >= 0):
    2940         # The Qt API and tests do not follow WebKit style.
    2941         # They follow Qt style. :)
     2939        or filename.find('WebKit/qt/tests/') >= 0
     2940        or filename.find('WebKit/gtk/tests/') >= 0):
     2941        # The Qt API and the Qt and Gtk tests do not follow WebKit style.
    29422942        return True
    29432943
  • trunk/WebKitTools/Scripts/webkitpy/style/cpp_style_unittest.py

    r53538 r53539  
    36323632        self.assert_(cpp_style.is_exempt('JavaScriptCore/qt/api/qscriptengine_p.h'))
    36333633        self.assert_(cpp_style.is_exempt('WebKit/qt/tests/qwebsecurityorigin/tst_qwebsecurityorigin.cpp'))
     3634        self.assert_(cpp_style.is_exempt('WebKit/gtk/tests/testatk.c'))
    36343635
    36353636def tearDown():
Note: See TracChangeset for help on using the changeset viewer.