| 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 '-translate.TranslateTest.testSessionRestore', | 583 '-translate.TranslateTest.testSessionRestore', |
| 584 # Deal with i18n chars. crosbug.com/12639 | 584 # Deal with i18n chars. crosbug.com/12639 |
| 585 '-translate.TranslateTest.testDownloadsNotTranslated', | 585 '-translate.TranslateTest.testDownloadsNotTranslated', |
| 586 ], | 586 ], |
| 587 }, | 587 }, |
| 588 | 588 |
| 589 # Performance tests. | 589 # Performance tests. |
| 590 'PERFORMANCE': { | 590 'PERFORMANCE': { |
| 591 'all': [ | 591 'all': [ |
| 592 'perf', | 592 'perf', |
| 593 '-perf.WebPageReplayPageCyclerTest', # Disable new test until vetted. |
| 593 ], | 594 ], |
| 594 'win': [ | 595 'win': [ |
| 595 '-perf.GPUPerfTest', # Fails. Discuss with prachij@. | 596 '-perf.GPUPerfTest', # Fails. Discuss with prachij@. |
| 596 '-perf.LiveGamePerfTest', # Requires linux /proc/stat. | 597 '-perf.LiveGamePerfTest', # Requires linux /proc/stat. |
| 597 '-perf.MemoryTest', # Designed only for ChromeOS. | 598 '-perf.MemoryTest', # Designed only for ChromeOS. |
| 598 '-perf.NetflixPerfTest', # Netflix plugin not available. | 599 '-perf.NetflixPerfTest', # Netflix plugin not available. |
| 599 '-perf.PageCyclerTest', # Requires page cycler data files on QA bots. | 600 '-perf.PageCyclerTest', # Requires page cycler data files on QA bots. |
| 600 '-perf.YoutubePerfTest', # AttributeError: AssertPlayingState. | 601 '-perf.YoutubePerfTest', # AttributeError: AssertPlayingState. |
| 601 ], | 602 ], |
| 602 'mac': [ | 603 'mac': [ |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 | 735 |
| 735 # WebRTC MediaStream tests. Requires webcam and audio device to be present on | 736 # WebRTC MediaStream tests. Requires webcam and audio device to be present on |
| 736 # the test machine. | 737 # the test machine. |
| 737 'WEBRTC': { | 738 'WEBRTC': { |
| 738 'all': [ | 739 'all': [ |
| 739 'media_stream_infobar', | 740 'media_stream_infobar', |
| 740 'webrtc_call', | 741 'webrtc_call', |
| 741 ], | 742 ], |
| 742 }, | 743 }, |
| 743 } | 744 } |
| OLD | NEW |