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
112
113
114
115
116
117
118
119
120
|
# Don't run FLAKY or FAILS ui tests under Valgrind.
# They tend to generate way too many flaky Valgrind reports.
*FLAKY_*
*FAILS_*
# Takes too long to valgrind, causes timeouts
BrowserTest.ThirtyFourTabs
# FIXME: these tests hang frequently in valgrind
SessionRestoreUITest.*
# Buggy test; see http://crbug.com/6522
DownloadTest.UnknownSize
# Flakily hang on Linux, Mac. See http://crbug.com/46643 and
# http://crbug.com/29598.
ErrorPageTest.DNSError_GoBack2AndForward
ErrorPageTest.DNSError_GoBack2Forward2
ErrorPageTest.DNSError_GoBack1
ErrorPageTest.DNSError_GoBack2
# Flaky timeout on Linux; see http://crbug.com/46781
UnloadTest.*
# Don't run reference tests under Valgrind
# On the Mac, they don't have symbols, even, so suppressions don't work
# They probably don't have ThreadSanitizer annotations TODO(timurrrr): check
*ReferenceTest.Perf
# Dromaeo's reference tests are split up into multiple *Perf sections.
DromaeoReferenceTest.*
# This test hangs under valgrind
# See http://crbug.com/27764
NewTabUITest.HomePageLink
# Hangs frequently under valgrind on Mac
# See http://crbug.com/29208
TabRestoreUITest.*
# Running these tests under valgrind and produces errors about "valgrind didn't
# finish writing 2 files" since the tests kill the browser process (which is
# actually the valgrind wrapper) in the middle of execution.
# See http://crbug.com/25176
ProcessSingletonLinuxTest.NotifyOtherProcessFailure
ProcessSingletonLinuxTest.NotifyOtherProcessDifferingHost
ProcessSingletonLinuxTest.NotifyOtherProcessOrCreate_DifferingHost
# These tests fail under valgrind.
# See http://crbug.com/29579
AutomationProxyTest.NavigateToURLWithTimeout1
AutomationProxyTest.NavigateToURLWithTimeout2
# See http://crbug.com/29586
NewTabUITest.ChromeInternalLoadsNTP
# See http://crbug.com/38575
WorkerTest.*
# See http://crbug.com/42205
DownloadTest.*
# See http://crbug.com/45792
DefaultPluginUITest.DefaultPluginLoadTest
# See http://crbug.com/46643
ErrorPageTest.DNSError_Basic
# See http://crbug.com/59659
NewTabUITest.NTPHasLoginName
# See http://crbug.com/30367
NewTabUITest.UpdateUserPrefsVersion
# Mac: See http://crbug.com/30661, Linux/CrOS: http://crbug.com/49576.
LayoutPluginTester.NPObjectReleasedOnDestruction
LayoutPluginTester.NPObjectSetException
# Fails on valgrind
# http://crbug.com/61601
GPUUITest.UITestCanLaunchWithOSMesa
# This doesn't pass under valgrind, because the valgrind helper prevents us
# from properly SIGTERMing the browser process.
# See http://crbug.com/42105
BrowserTest.PosixSessionEnd
# Fails flakily, http://crbug.com/70323
AutomatedUITestBase.ShowBookmarkBar
# Video decoding under valgrind is really slow, see http://crbug.com/53825
MediaTest.VideoBear*
# Flakily times out, http://crbug.com/85865
AppCacheUITest.AppCacheLayoutTests_NoPHP
# Flakily times out, http://crbug.com/85866
MetricsServiceTest.CloseRenderersNormally
# Fails flakily, http://crbug.com/46783
SessionHistoryTest.FrameBackForward
SessionHistoryTest.JavascriptHistory
# Fails flakily, http://crbug.com/86783
ResourceDispatcherTest.CrossSiteImmediateLoadOnunloadCookie
# http://crbug.com/89173
FastShutdown.SlowTermination
# Out-of-process PPAPI tests fail on buildbots http://crbug.com/89961
OutOfProcessPPAPITest.Instance
OutOfProcessPPAPITest.CursorControl
OutOfProcessPPAPITest.PostMessage
# Flakily times out, http://crbug.com/92527
NamedInterfaceTest.BasicNamedInterface
# These tests fail due to timeouts and hang the UI test runner,
# http://crbug.com/61579
LocaleTestsDa.TestStart
LocaleTestsHe.TestStart
LocaleTestsZhTw.TestStart
# Times out flakily, http://crbug.com/96312
AutomatedUITestBase.CloseBrowserWindow
AutomatedUITestBase.CloseTab
AutomatedUITestBase.OpenCloseBrowserWindowWithAccelerator
# Times out flakily, http://crbug.com/96313
AutomatedUITestBase.DuplicateTab
|