Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: chrome/test/functional/PYAUTO_TESTS

Issue 8510075: Fixed and added new tests in SyncIntegrationTest class. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 # 4 #
5 # This file lists the pyauto tests that run as a part of the functional test 5 # This file lists the pyauto tests that run as a part of the functional test
6 # suite. 6 # suite.
7 # 7 #
8 # Tests can be enabled on a per-platform basis. Tests not listed here will 8 # Tests can be enabled on a per-platform basis. Tests not listed here will
9 # not be run. 9 # not be run.
10 # 10 #
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 '-sync.SyncTest.testPersonalStuffSyncSection', 127 '-sync.SyncTest.testPersonalStuffSyncSection',
128 # crbug.com/100591 128 # crbug.com/100591
129 '-pdf.PDFTest.testPDFRunner', 129 '-pdf.PDFTest.testPDFRunner',
130 # crbug.com/100593 130 # crbug.com/100593
131 '-nacl_sdk.NaClSDKTest.testVerifyNaClPlugin', 131 '-nacl_sdk.NaClSDKTest.testVerifyNaClPlugin',
132 ], 132 ],
133 133
134 'win': [ 134 'win': [
135 # Enable sync.SyncIntegrationTest only for windows CONTINUIOUS, 135 # Enable sync.SyncIntegrationTest only for windows CONTINUIOUS,
136 # which contains the sync protobufs. 136 # which contains the sync protobufs.
137 'sync.SyncIntegrationTest', 137 #'sync.SyncIntegrationTest',
138 138
139 # ================================================== 139 # ==================================================
140 # Disabled tests that need to be investigated/fixed. 140 # Disabled tests that need to be investigated/fixed.
141 # ================================================== 141 # ==================================================
142 # Some download test fails on win official builder, only thru buildbot 142 # Some download test fails on win official builder, only thru buildbot
143 # when downloading the small zip file. 143 # when downloading the small zip file.
144 # crbug.com/91225 144 # crbug.com/91225
145 '-find_in_page.FindMatchTests.testSearchInPDF', 145 '-find_in_page.FindMatchTests.testSearchInPDF',
146 # Disabled on vista in the actual test. crbug.com/89767 146 # Disabled on vista in the actual test. crbug.com/89767
147 # -imports.ImportsTest.testImportFirefoxDataTwice 147 # -imports.ImportsTest.testImportFirefoxDataTwice
148 # Disabled on vista in the actual test. crbug.com/89767 148 # Disabled on vista in the actual test. crbug.com/89767
149 # -imports.ImportsTest.testFirefoxImportFromPrefs 149 # -imports.ImportsTest.testFirefoxImportFromPrefs
150 # Disabled on vista in the actual test. crbug.com/89767 150 # Disabled on vista in the actual test. crbug.com/89767
151 # -imports.ImportsTest.testImportFirefoxPasswordsFromPrefs 151 # -imports.ImportsTest.testImportFirefoxPasswordsFromPrefs
152 # crbug.com/70694, crbug.com/73078 152 # crbug.com/70694, crbug.com/73078
153 '-passwords.PasswordTest.testInfoBarDisappearByReload', 153 '-passwords.PasswordTest.testInfoBarDisappearByReload',
154 '-passwords.PasswordTest.testNeverSavePasswords', 154 '-passwords.PasswordTest.testNeverSavePasswords',
155 # crbug.com/91887 155 # crbug.com/91887
156 '-passwords.PasswordTest.testSavedPasswordInTabsAndWindows', 156 '-passwords.PasswordTest.testSavedPasswordInTabsAndWindows',
157 '-passwords.PasswordTest.testClearFetchedCredForNewUserName', 157 '-passwords.PasswordTest.testClearFetchedCredForNewUserName',
158 # causes browser crash? crbug.com/99865 158 # causes browser crash? crbug.com/99865
159 '-prefs.PrefsTest.testGeolocationPref', 159 '-prefs.PrefsTest.testGeolocationPref',
160 # crbug.com/104227
161 '-sync.SyncIntegrationTest',
160 # crbug.com/88679 162 # crbug.com/88679
161 '-sync.SyncTest', 163 '-sync.SyncTest',
162 # crbug.com/86949 164 # crbug.com/86949
163 '-sync.SyncTest.testRestartBrowser', 165 '-sync.SyncTest.testRestartBrowser',
164 # crbug.com/87642 166 # crbug.com/87642
165 '-sync.SyncTest.testDisableAndEnableDatatypes', 167 '-sync.SyncTest.testDisableAndEnableDatatypes',
166 # crbug.com/104179
167 '-sync.SyncIntegrationTest.testAddBookmarkAndVerifySync',
168 # crbug.com/95621 168 # crbug.com/95621
169 '-youtube.YoutubeTest.testPlayerStatus', 169 '-youtube.YoutubeTest.testPlayerStatus',
170 # crbug.com/98526 170 # crbug.com/98526
171 '-pyauto_webdriver.PyAutoWebDriverTest.testCanConnectToRestartedBrowser', 171 '-pyauto_webdriver.PyAutoWebDriverTest.testCanConnectToRestartedBrowser',
172 '-pyauto_webdriver.PyAutoWebDriverTest.testTypeIntoTextBox', 172 '-pyauto_webdriver.PyAutoWebDriverTest.testTypeIntoTextBox',
173 # crbug.com/95031 173 # crbug.com/95031
174 '-notifications.NotificationsTest.testOriginPrefsNotSavedInIncognito', 174 '-notifications.NotificationsTest.testOriginPrefsNotSavedInIncognito',
175 # crbug.com/103379 175 # crbug.com/103379
176 '-policy.PolicyTest.testDisable3DAPIs', 176 '-policy.PolicyTest.testDisable3DAPIs',
177 ], 177 ],
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 # Disabled tests that need to be investigated/fixed. 484 # Disabled tests that need to be investigated/fixed.
485 # ================================================== 485 # ==================================================
486 # crbug.com/101787 486 # crbug.com/101787
487 '-enterprise.EnterpriseTestReverse.testDefaultSearchProviderDisabled', 487 '-enterprise.EnterpriseTestReverse.testDefaultSearchProviderDisabled',
488 # crbug.com/98500 488 # crbug.com/98500
489 '-enterprise.EnterpriseTestReverse.testAlwaysAuthorizePluginsDisabled', 489 '-enterprise.EnterpriseTestReverse.testAlwaysAuthorizePluginsDisabled',
490 # crbug.com/96896 490 # crbug.com/96896
491 '-enterprise.EnterpriseTest.testDisabledPlugins', 491 '-enterprise.EnterpriseTest.testDisabledPlugins',
492 '-enterprise.EnterpriseTest.testEnabledPlugins', 492 '-enterprise.EnterpriseTest.testEnabledPlugins',
493 # crbug.com/100893 493 # crbug.com/100893
494 '-enterprise.EnterpriseTestReverse.testEnableSPDY', 494 '-enterprise.EnterpriseTestReverse.testEnableSPDY',
495 ], 495 ],
496 496
497 'mac': [ 497 'mac': [
498 # Consistently failing on Mac QA bots only: crbug.com/97810 498 # Consistently failing on Mac QA bots only: crbug.com/97810
499 '-process_count', 499 '-process_count',
500 ], 500 ],
501 501
502 'linux': [ 502 'linux': [
503 'enterprise', 503 'enterprise',
504 # Add back the omnibox tests excluded from the CONTINUOUS suite above 504 # Add back the omnibox tests excluded from the CONTINUOUS suite above
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 623
624 # HTML5 media functional tests. 624 # HTML5 media functional tests.
625 'AV_FUNC': { 625 'AV_FUNC': {
626 'linux': [ 626 'linux': [
627 'media.media_event_simple_action', 627 'media.media_event_simple_action',
628 'media.media_event_simple_test', 628 'media.media_event_simple_test',
629 'media.media_event_track', 629 'media.media_event_track',
630 ], 630 ],
631 }, 631 },
632 } 632 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698