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', |
25 'bookmark_bar', | 25 'bookmark_bar', |
26 'bookmarks', | 26 'bookmarks', |
27 'browser', | 27 'browser', |
| 28 'browsing_data', |
28 'codesign', | 29 'codesign', |
29 'content', | 30 'content', |
30 'downloads', | 31 'downloads', |
31 'history', | 32 'history', |
32 'navigation', | 33 'navigation', |
33 'omnibox', | 34 'omnibox', |
34 'plugins', | 35 'plugins', |
35 'prefs', | 36 'prefs', |
36 'special_tabs', | 37 'special_tabs', |
37 'test_basic.SimpleTest.testCanOpenGoogle', | 38 'test_basic.SimpleTest.testCanOpenGoogle', |
38 'themes', | 39 'themes', |
39 ], | 40 ], |
40 | 41 |
41 'win': [ | 42 'win': [ |
42 # testBookmarkBarVisible fails on windows. crbug.com/42823 | 43 # testBookmarkBarVisible fails on windows. crbug.com/42823 |
43 '-bookmark_bar.BookmarkBarTest.testBookmarkBarVisible', | 44 '-bookmark_bar.BookmarkBarTest.testBookmarkBarVisible', |
44 ], | 45 ], |
45 | 46 |
46 'mac': [ | 47 'mac': [ |
47 ], | 48 ], |
48 | 49 |
49 'linux': [ | 50 'linux': [ |
50 '-omnibox', # http://crbug.com/44203 | 51 '-omnibox', # http://crbug.com/44203 |
51 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 | 52 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 |
52 '-content.ContentTest.testThreeWindows', # crbug.com/47457 | 53 '-content.ContentTest.testThreeWindows', # crbug.com/47457 |
53 ], | 54 ], |
54 | 55 |
55 # TODO(nirnimesh): Add a ChromeOS section | 56 # TODO(nirnimesh): Add a ChromeOS section |
56 } | 57 } |
OLD | NEW |