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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 'test_basic', | 84 'test_basic', |
85 'themes', | 85 'themes', |
86 ], | 86 ], |
87 | 87 |
88 'win': [ | 88 'win': [ |
89 # Some download test fails on win official builder, only thru buildbot | 89 # Some download test fails on win official builder, only thru buildbot |
90 # when downloading the small zip file. | 90 # when downloading the small zip file. |
91 # crbug.com/50481, crbug.com/54942 | 91 # crbug.com/50481, crbug.com/54942 |
92 '-downloads.DownloadsTest.testZip', | 92 '-downloads.DownloadsTest.testZip', |
93 '-downloads.DownloadsTest.testRemoveDownload', | 93 '-downloads.DownloadsTest.testRemoveDownload', |
| 94 '-downloads.DownloadsTest.testDownloadsPersistence', # crbug.com/83942 |
94 # crbug.com/66072 | 95 # crbug.com/66072 |
95 '-notifications.NotificationsTest.testNotificationOrderAfterClosingOne', | 96 '-notifications.NotificationsTest.testNotificationOrderAfterClosingOne', |
96 # crbug.com/70694, crbug.com/73078 | 97 # crbug.com/70694, crbug.com/73078 |
97 '-passwords.PasswordTest.testInfoBarDisappearByReload', | 98 '-passwords.PasswordTest.testInfoBarDisappearByReload', |
98 '-passwords.PasswordTest.testNeverSavePasswords', | 99 '-passwords.PasswordTest.testNeverSavePasswords', |
99 # crbug.com/67588 | 100 # crbug.com/67588 |
100 '-passwords.PasswordTest.testSavedPasswordInTabsAndWindows', | 101 '-passwords.PasswordTest.testSavedPasswordInTabsAndWindows', |
101 '-prefs.PrefsTest.testDownloadDirPref', | 102 '-prefs.PrefsTest.testDownloadDirPref', |
102 # crbug.com/83820 | 103 # crbug.com/83820 |
103 '-passwords.PasswordTest.testInfoBarDisappearByNavigatingPage', | 104 '-passwords.PasswordTest.testInfoBarDisappearByNavigatingPage', |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 # HTML5 media performance tests. | 248 # HTML5 media performance tests. |
248 'MEDIA_TESTS': { | 249 'MEDIA_TESTS': { |
249 'linux': [ | 250 'linux': [ |
250 'media.media_playbacktime', | 251 'media.media_playbacktime', |
251 'media.media_perf', | 252 'media.media_perf', |
252 'media.media_fps', | 253 'media.media_fps', |
253 'media.media_event_simple_test', | 254 'media.media_event_simple_test', |
254 ], | 255 ], |
255 }, | 256 }, |
256 } | 257 } |
OLD | NEW |