| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 '-downloads.DownloadsTest.testZip', | 90 '-downloads.DownloadsTest.testZip', |
| 91 '-downloads.DownloadsTest.testRemoveDownload', | 91 '-downloads.DownloadsTest.testRemoveDownload', |
| 92 # crbug.com/66072 | 92 # crbug.com/66072 |
| 93 '-notifications.NotificationsTest.testNotificationOrderAfterClosingOne', | 93 '-notifications.NotificationsTest.testNotificationOrderAfterClosingOne', |
| 94 # crbug.com/70694, crbug.com/73078 | 94 # crbug.com/70694, crbug.com/73078 |
| 95 '-passwords.PasswordTest.testInfoBarDisappearByReload', | 95 '-passwords.PasswordTest.testInfoBarDisappearByReload', |
| 96 '-passwords.PasswordTest.testNeverSavePasswords', | 96 '-passwords.PasswordTest.testNeverSavePasswords', |
| 97 # crbug.com/67588 | 97 # crbug.com/67588 |
| 98 '-passwords.PasswordTest.testSavedPasswordInTabsAndWindows', | 98 '-passwords.PasswordTest.testSavedPasswordInTabsAndWindows', |
| 99 '-prefs.PrefsTest.testDownloadDirPref', | 99 '-prefs.PrefsTest.testDownloadDirPref', |
| 100 # crbug.com/83820 |
| 101 '-passwords.PasswordTest.testInfoBarDisappearByNavigatingPage', |
| 102 '-passwords.PasswordTest.testDisplayAndSavePasswordInfobar', |
| 100 ], | 103 ], |
| 101 | 104 |
| 102 'mac': [ | 105 'mac': [ |
| 103 # Keychain popups make password & autofill tests difficult. | 106 # Keychain popups make password & autofill tests difficult. |
| 104 # crbug.com/49378 | 107 # crbug.com/49378 |
| 105 '-passwords', | 108 '-passwords', |
| 106 '-autofill', | 109 '-autofill', |
| 107 # codesign tests should run *after* signing. crbug.com/50481 | 110 # codesign tests should run *after* signing. crbug.com/50481 |
| 108 '-crash_reporter.CrashReporterTest.testRendererCrash', # crbug.com/69464 | 111 '-crash_reporter.CrashReporterTest.testRendererCrash', # crbug.com/69464 |
| 109 '-codesign', | 112 '-codesign', |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 # HTML5 media performance tests. | 245 # HTML5 media performance tests. |
| 243 'MEDIA_TESTS': { | 246 'MEDIA_TESTS': { |
| 244 'linux': [ | 247 'linux': [ |
| 245 'media.media_playbacktime', | 248 'media.media_playbacktime', |
| 246 'media.media_perf', | 249 'media.media_perf', |
| 247 'media.media_fps', | 250 'media.media_fps', |
| 248 'media.media_event_simple_test', | 251 'media.media_event_simple_test', |
| 249 ], | 252 ], |
| 250 }, | 253 }, |
| 251 } | 254 } |
| OLD | NEW |