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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 java_tests = ['testGetAboutSyncInfoYieldsValidData'] | 48 java_tests = ['testGetAboutSyncInfoYieldsValidData'] |
49 return self._RunSyncTests(java_tests) | 49 return self._RunSyncTests(java_tests) |
50 | 50 |
51 @tests_annotations.Feature(['Sync']) | 51 @tests_annotations.Feature(['Sync']) |
52 @tests_annotations.EnormousTest | 52 @tests_annotations.EnormousTest |
53 def testAboutSyncPageDisplaysCurrentSyncStatus(self): | 53 def testAboutSyncPageDisplaysCurrentSyncStatus(self): |
54 java_tests = ['testAboutSyncPageDisplaysCurrentSyncStatus'] | 54 java_tests = ['testAboutSyncPageDisplaysCurrentSyncStatus'] |
55 return self._RunSyncTests(java_tests) | 55 return self._RunSyncTests(java_tests) |
56 | 56 |
57 @tests_annotations.Feature(['Sync']) | 57 @tests_annotations.Feature(['Sync']) |
58 @tests_annotations.EnormousTest | 58 @tests_annotations.DisabledTest |
nyquist
2013/10/25 00:34:21
Could you add a comment to refer to the bug?
Also,
gone
2013/10/25 00:36:06
Done.
| |
59 def testDisableAndEnableSync(self): | 59 def testDisableAndEnableSync(self): |
60 java_tests = ['testDisableAndEnableSync'] | 60 java_tests = ['testDisableAndEnableSync'] |
61 return self._RunSyncTests(java_tests) | 61 return self._RunSyncTests(java_tests) |
OLD | NEW |