1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# Copyright (c) 2010 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# This file lists the pyauto tests that run as a part of the functional test
# suite.
#
# Tests can be enabled on a per-platform basis. Tests not listed here will
# not be run.
#
# Test names can be specified in any of the following ways:
# 1. as a module, in which case all tests in that module will be run
# example: 'test_basic'
# 2. or as a test case, in which case all tess in that test case will be run
# example: 'test_basic.SimpleTest'
# 3. or as an individual test
# example: 'test_basic.SimpleTest.testCanOpenGoogle'
#
# Tests beginning with '-' will be excluded. This can be used to enforce
# exclusions for a particular platform.
{
'all': [
'autofill',
'bookmark_bar',
'bookmarks',
'browser',
'browsing_data',
'codesign',
'content',
'cookies',
'crash_reporter',
'downloads',
'execute_javascript',
'history',
'imports',
'infobars',
'navigation',
'omnibox',
'passwords',
'plugins',
'prefs',
'search_engines',
'special_tabs',
'test_basic.SimpleTest.testCanOpenGoogle',
'themes',
'translate',
# This test fails due to crbug.com/35485
'-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage',
# This test fails due to crbug.com/50706
'-translate.TranslateTest.testToggleTranslateOption'
],
'win': [
# testBookmarkBarVisible fails on windows. crbug.com/42823
'-bookmark_bar.BookmarkBarTest.testBookmarkBarVisible',
# Some download test fails on win official builder, only thru buildbot when
# downloading the small zip file.
# crbug.com/50481, crbug.com/54942
'-downloads.DownloadsTest.testZip',
'-downloads.DownloadsTest.testRemoveDownload',
'-prefs.PrefsTest.testDownloadDirPref',
],
'mac': [
# Keychain popups make password & autofill tests difficult. crbug.com/49378
'-passwords',
'-autofill',
# codesign tests should run *after* signing. crbug.com/50481
'-codesign',
'-content.ContentTest.testThreeWindows', # crbug.com/47457
'-downloads.DownloadsTest.testSaveDangerousFile', # crbug.com/57875
],
'linux': [ # linux != chromeos
'-omnibox', # http://crbug.com/44203
'-browser.BrowserTest.testWindowResize', # crbug.com/44963
'-content.ContentTest.testThreeWindows', # crbug.com/47457
],
# ChromeOS is linux, but note that this section does not include the
# entries in the linux section above.
'chromeos': [
# you cannot resize browser window on chromeos
'-browser.BrowserTest.testWindowResize',
# Importer tests are invalid on chromeos since chrome is the only browser
'-imports',
# crbug.com/42823
'-bookmark_bar.BookmarkBarTest.testBookmarkBarVisible',
# chrome/test/data/plugins dir missing in autotest pkg. crosbug.com/6855
'-browser.BrowserTest.testCanLoadFlash',
'-browser.BrowserTest.testFlashLoadsAfterKill',
'-browser.BrowserTest.testSingleFlashPluginProcess',
'-infobars.InfobarTest.testPluginCrashInfobar',
'-omnibox', # http://crbug.com/44203
# crosbug.com/6856
'-prefs.PrefsTest.testNavigationStateOnSessionRestore',
'-prefs.PrefsTest.testSessionRestoreURLs',
'-prefs.PrefsTest.testSessionRestore',
'-translate.TranslateTest.testSessionRestore',
'-downloads.DownloadsTest.testNoUnsafeDownloadsOnRestart',
'-downloads.DownloadsTest.testZip',
'-downloads.DownloadsTest.testZipInIncognito',
'-downloads.DownloadsTest.testCrazyFilenames',
'-downloads.DownloadsTest.testBigZip',
'-downloads.DownloadsTest.testCancelDownload',
'-downloads.DownloadsTest.testPauseAndResume',
'-translate.TranslateTest.testDownloadsNotTranslated',
],
}
|