[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

mrobinson at webkit.org mrobinson at webkit.org
Wed Dec 22 11:35:10 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit c09eacd24d3f41f1e024bff41cb450f4c450f0f5
Author: mrobinson at webkit.org <mrobinson at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 29 22:36:14 2010 +0000

    2010-07-29  Martin Robinson  <mrobinson at igalia.com>
    
            Unreviewed build fix.
    
            Add missing second argument to assert_lint in new style checker tests.
    
            * Scripts/webkitpy/style/checkers/cpp_unittest.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64314 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index f9f928d..2e589fd 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,11 @@
+2010-07-29  Martin Robinson  <mrobinson at igalia.com>
+
+        Unreviewed build fix.
+
+        Add missing second argument to assert_lint in new style checker tests.
+
+        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
+
 2010-07-29  Anders Carlsson  <andersca at apple.com>
 
         Reviewed by Adam Roben.
diff --git a/WebKitTools/Scripts/webkitpy/style/checkers/cpp_unittest.py b/WebKitTools/Scripts/webkitpy/style/checkers/cpp_unittest.py
index 18fcfc5..c927db6 100644
--- a/WebKitTools/Scripts/webkitpy/style/checkers/cpp_unittest.py
+++ b/WebKitTools/Scripts/webkitpy/style/checkers/cpp_unittest.py
@@ -3704,9 +3704,9 @@ class WebKitStyleTest(CppStyleTestBase):
         self.assert_lint('void qt_drt_is_awesome(int var1, int var2);', '')
 
         # NPAPI functions that start with NPN_, NPP_ or NP_ are allowed.
-        self.assert_lint('void NPN_Status(NPP, const char*)')
-        self.assert_lint('NPError NPP_SetWindow(NPP instance, NPWindow *window)')
-        self.assert_lint('NPObject* NP_Allocate(NPP, NPClass*)')
+        self.assert_lint('void NPN_Status(NPP, const char*)', '')
+        self.assert_lint('NPError NPP_SetWindow(NPP instance, NPWindow *window)', '')
+        self.assert_lint('NPObject* NP_Allocate(NPP, NPClass*)', '')
 
         # const_iterator is allowed as well.
         self.assert_lint('typedef VectorType::const_iterator const_iterator;', '')

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list