OLD | NEW |
1 # Copyright (c) 2014 Google Inc. All Rights Reserved. | 1 # Copyright (c) 2014 Google Inc. 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'cast_tests', | 8 'target_name': 'cast_tests', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 29 matching lines...) Expand all Loading... |
40 ], | 40 ], |
41 'conditions': [ | 41 'conditions': [ |
42 ['target_arch=="arm" and OS!="android"', { | 42 ['target_arch=="arm" and OS!="android"', { |
43 'variables': { | 43 'variables': { |
44 'filters': [ | 44 'filters': [ |
45 # Run net_unittests first to avoid random failures due to slow pyt
hon startup | 45 # Run net_unittests first to avoid random failures due to slow pyt
hon startup |
46 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTes
t fail due to | 46 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTes
t fail due to |
47 # readonly certdb (b/8153161) | 47 # readonly certdb (b/8153161) |
48 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run.
Increase | 48 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run.
Increase |
49 # timeout to 75s from 45s to allow it to pass (b/19821476) | 49 # timeout to 75s from 45s to allow it to pass (b/19821476) |
50 'net_unittests --gtest_filter=-KeygenHandlerTest.SmokeTest:KeygenHa
ndlerTest.ConcurrencyTest --test-launcher-timeout=75000', | 50 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784) |
| 51 'net_unittests --gtest_filter=-KeygenHandlerTest.SmokeTest:KeygenHa
ndlerTest.ConcurrencyTest:ProxyScriptFetcherImplTest.HttpMimeType --test-launche
r-timeout=75000', |
51 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty e
glibc incompatibility (crbug/428211) | 52 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty e
glibc incompatibility (crbug/428211) |
52 # Disable ProcessMetricsTest.GetNumberOfThreads (b/15610509) | 53 # Disable ProcessMetricsTest.GetNumberOfThreads (b/15610509) |
53 # Disable ProcessUtilTest.* (need to define OS_ANDROID) | 54 # Disable ProcessUtilTest.* (need to define OS_ANDROID) |
54 # Disable StackContainer.BufferAlignment (don't support 16-byte al
ignment) | 55 # Disable StackContainer.BufferAlignment (don't support 16-byte al
ignment) |
55 # Disable SystemMetrics2Test.GetSystemMemoryInfo (buffers>0 can't
be guaranteed) | 56 # Disable SystemMetrics2Test.GetSystemMemoryInfo (buffers>0 can't
be guaranteed) |
56 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibr
aries:ProcessMetricsTest.GetNumberOfThreads:ProcessUtilTest.*:StackContainer.Buf
ferAlignment:SystemMetrics2Test.GetSystemMemoryInfo', | 57 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibr
aries:ProcessMetricsTest.GetNumberOfThreads:ProcessUtilTest.*:StackContainer.Buf
ferAlignment:SystemMetrics2Test.GetSystemMemoryInfo', |
57 # DesktopCaptureDeviceTest.*: No capture device on Eureka | 58 # DesktopCaptureDeviceTest.*: No capture device on Eureka |
58 # Disable PepperGamepadHostTest.WaitForReply (pepper not supported
on Eureka) | 59 # Disable PepperGamepadHostTest.WaitForReply (pepper not supported
on Eureka) |
59 # Disable GpuDataManagerImplPrivateTest.SetGLStrings and | 60 # Disable GpuDataManagerImplPrivateTest.SetGLStrings and |
60 # RenderWidgetHostTest.Background because we disable the blacklist
to enable WebGL (b/16142554) | 61 # RenderWidgetHostTest.Background because we disable the blacklist
to enable WebGL (b/16142554) |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 'HAS_OUT_OF_PROC_TEST_RUNNER', | 242 'HAS_OUT_OF_PROC_TEST_RUNNER', |
242 ], | 243 ], |
243 'sources': [ | 244 'sources': [ |
244 'browser/test/chromecast_shell_browser_test.cc', | 245 'browser/test/chromecast_shell_browser_test.cc', |
245 ], | 246 ], |
246 }, | 247 }, |
247 ], # end of targets | 248 ], # end of targets |
248 }], | 249 }], |
249 ], # end of conditions | 250 ], # end of conditions |
250 } | 251 } |
OLD | NEW |