| OLD | NEW |
| 1 # Copyright (C) 2010 Google Inc. All rights reserved. | 1 # Copyright (C) 2010 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | 28 |
| 29 """Checks WebKit style for test_expectations files.""" | 29 """Checks WebKit style for test_expectations files.""" |
| 30 | 30 |
| 31 import logging | 31 import logging |
| 32 import optparse | |
| 33 import os | |
| 34 import re | |
| 35 import sys | |
| 36 | 32 |
| 37 from common import TabChecker | 33 from common import TabChecker |
| 38 from webkitpy.common.host import Host | 34 from webkitpy.common.host import Host |
| 39 from webkitpy.layout_tests.models.test_expectations import TestExpectationParser | 35 from webkitpy.layout_tests.models.test_expectations import TestExpectationParser |
| 40 | 36 |
| 41 | 37 |
| 42 _log = logging.getLogger(__name__) | 38 _log = logging.getLogger(__name__) |
| 43 | 39 |
| 44 | 40 |
| 45 class TestExpectationsChecker(object): | 41 class TestExpectationsChecker(object): |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 def check_tabs(self, lines): | 73 def check_tabs(self, lines): |
| 78 self._tab_checker.check(lines) | 74 self._tab_checker.check(lines) |
| 79 | 75 |
| 80 def check(self, lines): | 76 def check(self, lines): |
| 81 expectations = '\n'.join(lines) | 77 expectations = '\n'.join(lines) |
| 82 if self._port_obj: | 78 if self._port_obj: |
| 83 self.check_test_expectations(expectations_str=expectations, tests=No
ne) | 79 self.check_test_expectations(expectations_str=expectations, tests=No
ne) |
| 84 | 80 |
| 85 # Warn tabs in lines as well | 81 # Warn tabs in lines as well |
| 86 self.check_tabs(lines) | 82 self.check_tabs(lines) |
| OLD | NEW |