OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 # |
11 # Test names can be specified in any of the following ways: | 11 # Test names can be specified in any of the following ways: |
12 # 1. as a module, in which case all tests in that module will be run | 12 # 1. as a module, in which case all tests in that module will be run |
13 # example: 'test_basic' | 13 # example: 'test_basic' |
14 # 2. or as a test case, in which case all tess in that test case will be run | 14 # 2. or as a test case, in which case all tess in that test case will be run |
15 # example: 'test_basic.SimpleTest' | 15 # example: 'test_basic.SimpleTest' |
16 # 3. or as an individual test | 16 # 3. or as an individual test |
17 # example: 'test_basic.SimpleTest.testCanOpenGoogle' | 17 # example: 'test_basic.SimpleTest.testCanOpenGoogle' |
18 # | 18 # |
19 # Tests beginning with '-' will be excluded. This can be used to enforce | 19 # Tests beginning with '-' will be excluded. This can be used to enforce |
20 # exclusions for a particular platform. | 20 # exclusions for a particular platform. |
21 | 21 |
22 { | 22 { |
23 'all': [ | 23 'all': [ |
24 'autofill', | 24 # 'autofill', crbug.com/56844 |
25 'bookmark_bar', | 25 'bookmark_bar', |
26 'bookmarks', | 26 'bookmarks', |
27 'browser', | 27 'browser', |
28 'browsing_data', | 28 'browsing_data', |
29 'codesign', | 29 'codesign', |
30 'content', | 30 'content', |
31 'cookies', | 31 'cookies', |
32 'crash_reporter', | 32 'crash_reporter', |
33 'downloads', | 33 'downloads', |
34 'execute_javascript', | 34 'execute_javascript', |
(...skipping 23 matching lines...) Expand all Loading... |
58 # downloading the small zip file. | 58 # downloading the small zip file. |
59 # crbug.com/50481, crbug.com/54942 | 59 # crbug.com/50481, crbug.com/54942 |
60 '-downloads.DownloadsTest.testZip', | 60 '-downloads.DownloadsTest.testZip', |
61 '-downloads.DownloadsTest.testRemoveDownload', | 61 '-downloads.DownloadsTest.testRemoveDownload', |
62 '-prefs.PrefsTest.testDownloadDirPref', | 62 '-prefs.PrefsTest.testDownloadDirPref', |
63 ], | 63 ], |
64 | 64 |
65 'mac': [ | 65 'mac': [ |
66 # Keychain popups make password & autofill tests difficult. crbug.com/49378 | 66 # Keychain popups make password & autofill tests difficult. crbug.com/49378 |
67 '-passwords', | 67 '-passwords', |
68 '-autofill', | 68 # '-autofill', crbug.com/56844 |
69 # codesign tests should run *after* signing. crbug.com/50481 | 69 # codesign tests should run *after* signing. crbug.com/50481 |
70 '-codesign', | 70 '-codesign', |
71 '-content.ContentTest.testThreeWindows', # crbug.com/47457 | 71 '-content.ContentTest.testThreeWindows', # crbug.com/47457 |
72 ], | 72 ], |
73 | 73 |
74 'linux': [ # linux != chromeos | 74 'linux': [ # linux != chromeos |
75 '-omnibox', # http://crbug.com/44203 | 75 '-omnibox', # http://crbug.com/44203 |
76 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 | 76 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 |
77 '-content.ContentTest.testThreeWindows', # crbug.com/47457 | 77 '-content.ContentTest.testThreeWindows', # crbug.com/47457 |
78 ], | 78 ], |
(...skipping 22 matching lines...) Expand all Loading... |
101 '-downloads.DownloadsTest.testNoUnsafeDownloadsOnRestart', | 101 '-downloads.DownloadsTest.testNoUnsafeDownloadsOnRestart', |
102 '-downloads.DownloadsTest.testZip', | 102 '-downloads.DownloadsTest.testZip', |
103 '-downloads.DownloadsTest.testZipInIncognito', | 103 '-downloads.DownloadsTest.testZipInIncognito', |
104 '-downloads.DownloadsTest.testCrazyFilenames', | 104 '-downloads.DownloadsTest.testCrazyFilenames', |
105 '-downloads.DownloadsTest.testBigZip', | 105 '-downloads.DownloadsTest.testBigZip', |
106 '-downloads.DownloadsTest.testCancelDownload', | 106 '-downloads.DownloadsTest.testCancelDownload', |
107 '-downloads.DownloadsTest.testPauseAndResume', | 107 '-downloads.DownloadsTest.testPauseAndResume', |
108 '-translate.TranslateTest.testDownloadsNotTranslated', | 108 '-translate.TranslateTest.testDownloadsNotTranslated', |
109 ], | 109 ], |
110 } | 110 } |
OLD | NEW |