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