| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright 2013 The Chromium Authors. All rights reserved. | 2 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Host-driven Java tests which exercise sync functionality.""" | 6 """Host-driven Java tests which exercise sync functionality.""" |
| 7 | 7 |
| 8 from pylib import constants | 8 from pylib import constants |
| 9 from pylib.host_driven import test_case | 9 from pylib.host_driven import test_case |
| 10 from pylib.host_driven import test_server | 10 from pylib.host_driven import test_server |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 return self._RunSyncTests(java_tests) | 49 return self._RunSyncTests(java_tests) |
| 50 | 50 |
| 51 # http://crbug.com/348117 | 51 # http://crbug.com/348117 |
| 52 # @tests_annotations.Feature(['Sync']) | 52 # @tests_annotations.Feature(['Sync']) |
| 53 # @tests_annotations.EnormousTest | 53 # @tests_annotations.EnormousTest |
| 54 @tests_annotations.DisabledTest | 54 @tests_annotations.DisabledTest |
| 55 def testAboutSyncPageDisplaysCurrentSyncStatus(self): | 55 def testAboutSyncPageDisplaysCurrentSyncStatus(self): |
| 56 java_tests = ['testAboutSyncPageDisplaysCurrentSyncStatus'] | 56 java_tests = ['testAboutSyncPageDisplaysCurrentSyncStatus'] |
| 57 return self._RunSyncTests(java_tests) | 57 return self._RunSyncTests(java_tests) |
| 58 | 58 |
| 59 # @tests_annotations.Feature(['Sync']) | 59 @tests_annotations.Feature(['Sync']) |
| 60 # @tests_annotations.EnormousTest | 60 @tests_annotations.EnormousTest |
| 61 # See crbug.com/348951 | |
| 62 @tests_annotations.DisabledTest | |
| 63 def testDisableAndEnableSync(self): | 61 def testDisableAndEnableSync(self): |
| 64 java_tests = ['testDisableAndEnableSync'] | 62 java_tests = ['testDisableAndEnableSync'] |
| 65 return self._RunSyncTests(java_tests) | 63 return self._RunSyncTests(java_tests) |
| OLD | NEW |