Changeset 50091 in webkit


Ignore:
Timestamp:
Oct 26, 2009 1:53:44 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-10-26 Carol Szabo <carol.szabo@nokia.com>

Reviewed by David Levin.

REGRESSION: 2 failures in run-webkit-unittests
https://bugs.webkit.org/show_bug.cgi?id=30645

  • Scripts/modules/cpp_style_unittest.py: Fixed a few test scenarios which apparently lost some spaces from text literals.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r50086 r50091  
     12009-10-26  Carol Szabo  <carol.szabo@nokia.com>
     2
     3        Reviewed by David Levin.
     4
     5        REGRESSION: 2 failures in run-webkit-unittests
     6        https://bugs.webkit.org/show_bug.cgi?id=30645
     7
     8        * Scripts/modules/cpp_style_unittest.py:
     9        Fixed a few test scenarios which apparently lost some spaces from
     10        text literals.
     11
    1122009-10-26  Kevin Ollivier  <kevino@theolliviers.com>
    213
  • trunk/WebKitTools/Scripts/modules/cpp_style_unittest.py

    r49690 r50091  
    28202820            '};\n'
    28212821            '}',
    2822             'Code inside a namespace should not be indented.  [whitespace/indent] [4]',
     2822            '',
    28232823            'foo.h')
    28242824        self.assert_multi_line_lint(
    28252825            'namespace OuterNamespace {\n'
    2826             'namespace InnerNamespace {\n'
    2827             'class Document {\n'
     2826            '    namespace InnerNamespace {\n'
     2827            '    class Document {\n'
    28282828            '};\n'
    28292829            '};\n'
     
    28342834            'namespace WebCore {\n'
    28352835            '#if 0\n'
    2836             'class Document {\n'
     2836            '    class Document {\n'
    28372837            '};\n'
    28382838            '#endif\n'
     
    33073307            'int foo;\n'
    33083308            '};\n',
    3309             'Code inside a namespace should not be indented.  [whitespace/indent] [4]')
     3309            '')
    33103310        self.assert_multi_line_lint(
    33113311            'for (int i = 0; i < 10; i++) {\n'
Note: See TracChangeset for help on using the changeset viewer.