OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
418 ], | 418 ], |
419 }, | 419 }, |
420 | 420 |
421 # The FULL suite includes CONTINUOUS, and more. | 421 # The FULL suite includes CONTINUOUS, and more. |
422 # This the suite that gets run on 'Google Chrome' builds. | 422 # This the suite that gets run on 'Google Chrome' builds. |
423 'FULL': { | 423 'FULL': { |
424 'all': [ | 424 'all': [ |
425 '@CONTINUOUS', | 425 '@CONTINUOUS', |
426 'nacl_sdk', | 426 'nacl_sdk', |
427 'translate', | 427 'translate', |
428 'aboutplugins_ui', | |
kkania
2012/01/20 17:16:28
your first test can run on all builds, cant it?
vivianz
2012/01/27 23:24:36
Done.
| |
428 | 429 |
429 # ================================================== | 430 # ================================================== |
430 # Disabled tests that need to be investigated/fixed. | 431 # Disabled tests that need to be investigated/fixed. |
431 # ================================================== | 432 # ================================================== |
432 # This test fails due to crbug.com/35485 | 433 # This test fails due to crbug.com/35485 |
433 '-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage', | 434 '-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage', |
434 # This test fails due to crbug.com/50706 | 435 # This test fails due to crbug.com/50706 |
435 '-translate.TranslateTest.testToggleTranslateOption', | 436 '-translate.TranslateTest.testToggleTranslateOption', |
436 # crbug.com/85601 | 437 # crbug.com/85601 |
437 '-translate.TranslateTest.testAlwaysTranslateInIncognito', | 438 '-translate.TranslateTest.testAlwaysTranslateInIncognito', |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
533 '-enterprise.EnterpriseTest.testAlwaysAuthorizePlugins', | 534 '-enterprise.EnterpriseTest.testAlwaysAuthorizePlugins', |
534 ], | 535 ], |
535 | 536 |
536 'chromeos': [ | 537 'chromeos': [ |
537 'netflix', | 538 'netflix', |
538 # =========================== | 539 # =========================== |
539 # Permanently-disabled tests. | 540 # Permanently-disabled tests. |
540 # =========================== | 541 # =========================== |
541 # No NaCl support on ChromeOS. | 542 # No NaCl support on ChromeOS. |
542 '-nacl_sdk', | 543 '-nacl_sdk', |
544 # No Web Driver test for ChromeOS | |
545 '-aboutplugins_ui', | |
543 | 546 |
544 # ================================================== | 547 # ================================================== |
545 # Disabled tests that need to be investigated/fixed. | 548 # Disabled tests that need to be investigated/fixed. |
546 # ================================================== | 549 # ================================================== |
547 # Session restore not working with PyAuto. crosbug.com/12648 | 550 # Session restore not working with PyAuto. crosbug.com/12648 |
548 '-translate.TranslateTest.testSessionRestore', | 551 '-translate.TranslateTest.testSessionRestore', |
549 # Deal with i18n chars. crosbug.com/12639 | 552 # Deal with i18n chars. crosbug.com/12639 |
550 '-translate.TranslateTest.testDownloadsNotTranslated', | 553 '-translate.TranslateTest.testDownloadsNotTranslated', |
551 ], | 554 ], |
552 }, | 555 }, |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
620 ], | 623 ], |
621 }, | 624 }, |
622 | 625 |
623 # HTML5 media performance tests. | 626 # HTML5 media performance tests. |
624 'AV_PERF': { | 627 'AV_PERF': { |
625 'linux': [ | 628 'linux': [ |
626 'media.media_constrained_network_perf', | 629 'media.media_constrained_network_perf', |
627 ], | 630 ], |
628 }, | 631 }, |
629 } | 632 } |
OLD | NEW |