| 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 | 817 |
| 818 # WebRTC MediaStream tests. Requires webcam and audio device to be present on | 818 # WebRTC MediaStream tests. Requires webcam and audio device to be present on |
| 819 # the test machine. | 819 # the test machine. |
| 820 'WEBRTC': { | 820 'WEBRTC': { |
| 821 'all': [ | 821 'all': [ |
| 822 'media_stream_infobar', | 822 'media_stream_infobar', |
| 823 'webrtc_call', | 823 'webrtc_call', |
| 824 ], | 824 ], |
| 825 }, | 825 }, |
| 826 | 826 |
| 827 # Trace event tests. |
| 828 'TRACING': { |
| 829 'all': [ |
| 830 'tracing.tracing_smoke_test', |
| 831 ], |
| 832 }, |
| 833 |
| 827 # Pyauto functional tests running on coverage bots. | 834 # Pyauto functional tests running on coverage bots. |
| 828 'CODE_COVERAGE': { | 835 'CODE_COVERAGE': { |
| 829 'all': [ | 836 'all': [ |
| 830 '@FULL', | 837 '@FULL', |
| 831 ], | 838 ], |
| 832 'linux': [ | 839 'linux': [ |
| 833 # These tests fail on coverage bots. Disabling for now. | 840 # These tests fail on coverage bots. Disabling for now. |
| 834 '-test_clean_exit', | 841 '-test_clean_exit', |
| 835 '-about_plugins_ui', | 842 '-about_plugins_ui', |
| 836 '-autofill', | 843 '-autofill', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 854 '-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage', | 861 '-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage', |
| 855 '-ntp.NTPTest.testLaunchAppFullScreen', | 862 '-ntp.NTPTest.testLaunchAppFullScreen', |
| 856 '-https.SSLTest.testSSLCertOK', | 863 '-https.SSLTest.testSSLCertOK', |
| 857 '-https.SSLTest.testSSLCertAuthorityOK', | 864 '-https.SSLTest.testSSLCertAuthorityOK', |
| 858 '-media.media_basic_playback.MediaConstrainedNetworkPerfTest.testBasicPlay
backMatrix' | 865 '-media.media_basic_playback.MediaConstrainedNetworkPerfTest.testBasicPlay
backMatrix' |
| 859 '-policy_prefs_ui.PolicyPrefsUITest.testNoUserPoliciesNoBanner', | 866 '-policy_prefs_ui.PolicyPrefsUITest.testNoUserPoliciesNoBanner', |
| 860 '-policy_prefs_ui.PolicyPrefsUITest.testToggleUserPolicyTogglesBanner', | 867 '-policy_prefs_ui.PolicyPrefsUITest.testToggleUserPolicyTogglesBanner', |
| 861 ], | 868 ], |
| 862 }, | 869 }, |
| 863 } | 870 } |
| OLD | NEW |