| OLD | NEW |
| 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 }, | 432 }, |
| 433 | 433 |
| 434 # The FULL suite includes CONTINUOUS, and more. | 434 # The FULL suite includes CONTINUOUS, and more. |
| 435 # This the suite that gets run on 'Google Chrome' builds. | 435 # This the suite that gets run on 'Google Chrome' builds. |
| 436 'FULL': { | 436 'FULL': { |
| 437 'all': [ | 437 'all': [ |
| 438 '@CONTINUOUS', | 438 '@CONTINUOUS', |
| 439 'nacl_sdk', | 439 'nacl_sdk', |
| 440 'translate', | 440 'translate', |
| 441 | 441 |
| 442 # Disabled until the changes reach the Google Chrome builders. | 442 # crbug.com/103427 has been fixed on trunk. |
| 443 # Re-enable on 11/02/2011. | 443 # Disabled until r110327 reaches Google Chrome builds. |
| 444 '-prefs.PrefsTest.testHaveLocalStatePrefs', | 444 # Re-enable on 11/17/2011 |
| 445 '-notifications.NotificationsTest.testIncognitoNotification', |
| 446 '-notifications.NotificationsTest.testOriginPrefsNotSavedInIncognito', |
| 445 | 447 |
| 446 # =========================== | 448 # =========================== |
| 447 # Permanently-disabled tests. | 449 # Permanently-disabled tests. |
| 448 # =========================== | 450 # =========================== |
| 449 # Can't use automation to change the policy data on Chrome builds. | 451 # Can't use automation to change the policy data on Chrome builds. |
| 450 '-policy', | 452 '-policy', |
| 451 '-policy_prefs_ui', | 453 '-policy_prefs_ui', |
| 452 | 454 |
| 453 # ================================================== | 455 # ================================================== |
| 454 # Disabled tests that need to be investigated/fixed. | 456 # Disabled tests that need to be investigated/fixed. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 481 # Disabled tests that need to be investigated/fixed. | 483 # Disabled tests that need to be investigated/fixed. |
| 482 # ================================================== | 484 # ================================================== |
| 483 # crbug.com/101787 | 485 # crbug.com/101787 |
| 484 '-enterprise.EnterpriseTestReverse.testDefaultSearchProviderDisabled', | 486 '-enterprise.EnterpriseTestReverse.testDefaultSearchProviderDisabled', |
| 485 # crbug.com/98500 | 487 # crbug.com/98500 |
| 486 '-enterprise.EnterpriseTestReverse.testAlwaysAuthorizePluginsDisabled', | 488 '-enterprise.EnterpriseTestReverse.testAlwaysAuthorizePluginsDisabled', |
| 487 # crbug.com/96896 | 489 # crbug.com/96896 |
| 488 '-enterprise.EnterpriseTest.testDisabledPlugins', | 490 '-enterprise.EnterpriseTest.testDisabledPlugins', |
| 489 '-enterprise.EnterpriseTest.testEnabledPlugins', | 491 '-enterprise.EnterpriseTest.testEnabledPlugins', |
| 490 # crbug.com/100893 | 492 # crbug.com/100893 |
| 491 '-enterprise.EnterpriseTestReverse.testEnableSPDY', | 493 '-enterprise.EnterpriseTestReverse.testEnableSPDY', |
| 492 ], | 494 ], |
| 493 | 495 |
| 494 'mac': [ | 496 'mac': [ |
| 495 # Consistently failing on Mac QA bots only: crbug.com/97810 | 497 # Consistently failing on Mac QA bots only: crbug.com/97810 |
| 496 '-process_count', | 498 '-process_count', |
| 497 ], | 499 ], |
| 498 | 500 |
| 499 'linux': [ | 501 'linux': [ |
| 500 'enterprise', | 502 'enterprise', |
| 501 # Add back the omnibox tests excluded from the CONTINUOUS suite above | 503 # Add back the omnibox tests excluded from the CONTINUOUS suite above |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 | 622 |
| 621 # HTML5 media functional tests. | 623 # HTML5 media functional tests. |
| 622 'AV_FUNC': { | 624 'AV_FUNC': { |
| 623 'linux': [ | 625 'linux': [ |
| 624 'media.media_event_simple_action', | 626 'media.media_event_simple_action', |
| 625 'media.media_event_simple_test', | 627 'media.media_event_simple_test', |
| 626 'media.media_event_track', | 628 'media.media_event_track', |
| 627 ], | 629 ], |
| 628 }, | 630 }, |
| 629 } | 631 } |
| OLD | NEW |