| 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 22 matching lines...) Expand all Loading... |
| 33 # This is the suite that gets run on 'Chromium' builds. | 33 # This is the suite that gets run on 'Chromium' builds. |
| 34 'CONTINUOUS': { | 34 'CONTINUOUS': { |
| 35 'all': [ | 35 'all': [ |
| 36 'about_plugins_ui.AboutPluginsUITest', | 36 'about_plugins_ui.AboutPluginsUITest', |
| 37 'apptest', | 37 'apptest', |
| 38 'autofill', | 38 'autofill', |
| 39 'bookmark_bar', | 39 'bookmark_bar', |
| 40 'bookmarks', | 40 'bookmarks', |
| 41 'browser', | 41 'browser', |
| 42 'browsing_data', | 42 'browsing_data', |
| 43 'chromoting_basic', |
| 43 'codesign', | 44 'codesign', |
| 44 'content', | 45 'content', |
| 45 'cookies', | 46 'cookies', |
| 46 'crash_reporter', | 47 'crash_reporter', |
| 47 'databases', | 48 'databases', |
| 48 'downloads', | 49 'downloads', |
| 49 'execute_javascript', | 50 'execute_javascript', |
| 50 'extensions', | 51 'extensions', |
| 51 'find_in_page', | 52 'find_in_page', |
| 52 'flash', | 53 'flash', |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 'chromeos_security', | 301 'chromeos_security', |
| 301 'chromeos_time', | 302 'chromeos_time', |
| 302 'chromeos_update', | 303 'chromeos_update', |
| 303 'chromeos_wifi_sanity', | 304 'chromeos_wifi_sanity', |
| 304 | 305 |
| 305 # =========================== | 306 # =========================== |
| 306 # Permanently-disabled tests. | 307 # Permanently-disabled tests. |
| 307 # =========================== | 308 # =========================== |
| 308 # You cannot resize the browser window on ChromeOS. | 309 # You cannot resize the browser window on ChromeOS. |
| 309 '-browser.BrowserTest.testWindowResize', | 310 '-browser.BrowserTest.testWindowResize', |
| 311 # ChromeOS doesn't yet support the chromoting host. |
| 312 '-chromoting_basic', |
| 310 # No codesign verification on ChromeOS. | 313 # No codesign verification on ChromeOS. |
| 311 '-codesign', | 314 '-codesign', |
| 312 # Import tests are invalid on ChromeOS since Chrome is the only browser. | 315 # Import tests are invalid on ChromeOS since Chrome is the only browser. |
| 313 '-imports', | 316 '-imports', |
| 314 # Sync is already signed in with the login account. | 317 # Sync is already signed in with the login account. |
| 315 # So one-click infobar tests do tno apply to chromeos. | 318 # So one-click infobar tests do tno apply to chromeos. |
| 316 '-infobars.OneClickInfobarTest', | 319 '-infobars.OneClickInfobarTest', |
| 317 # Multi-profile doesn't apply to chromeos yet. | 320 # Multi-profile doesn't apply to chromeos yet. |
| 318 '-multiprofile', | 321 '-multiprofile', |
| 319 '-ntp.NTPTest.testDifferentProfileNotAppearInMostVisited', | 322 '-ntp.NTPTest.testDifferentProfileNotAppearInMostVisited', |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 }, | 716 }, |
| 714 | 717 |
| 715 # WebRTC MediaStream tests. Requires webcam and audio device to be present on | 718 # WebRTC MediaStream tests. Requires webcam and audio device to be present on |
| 716 # the test machine. | 719 # the test machine. |
| 717 'WEBRTC': { | 720 'WEBRTC': { |
| 718 'linux': [ | 721 'linux': [ |
| 719 'webrtc_call', | 722 'webrtc_call', |
| 720 ], | 723 ], |
| 721 }, | 724 }, |
| 722 } | 725 } |
| OLD | NEW |