Commit dcfc3cda authored by Stephen Lanham's avatar Stephen Lanham Committed by Commit Bot

[Chromecast] Disable PartitionAllocTest.RepeatedReturnNullDirect.

This test is flaking on the CQ. Disable it on desktop until we can
assess the root cause.

BUG= b/67975693

Bug: 67975693
Test: CQ
Change-Id: I76ad684140460b10b819c45f77a75bff5a7fb935
Reviewed-on: https://chromium-review.googlesource.com/727076
Commit-Queue: Stephen Lanham <slan@chromium.org>
Reviewed-by: default avatarLuke Halliwell <halliwell@chromium.org>
Cr-Commit-Position: refs/heads/master@{#510143}
parent 2fef5725
...@@ -159,23 +159,29 @@ cast_test_group("cast_tests") { ...@@ -159,23 +159,29 @@ cast_test_group("cast_tests") {
base_unittests_filter = { base_unittests_filter = {
test_name = "base_unittests" test_name = "base_unittests"
if (target_os == "linux" && !is_cast_desktop_build) { gtest_excludes = []
# Disable ProcessMetricsTest.GetNumberOfThreads (b/15610509) if (target_os == "linux") {
# Disable ProcessUtilTest.* (need to define OS_ANDROID) if (is_cast_desktop_build) {
# Disable StackContainer.BufferAlignment (don't support 16-byte alignment) # Disable PartitionAllocTest.RepeatedReturnNullDirect (b/67975693)
# Disable SystemMetrics2Test.GetSystemMemoryInfo (buffers>0 can't be guaranteed) gtest_excludes += [ "PartitionAlloc.RepeatedReturnNullDirect" ]
# Disable TimeFormattingTest.TimeFormat* for flakiness on devices (crbug/671429) } else {
# Disable PostTasksViaTaskRunner/* to green up devices (b/62246873) # Disable ProcessMetricsTest.GetNumberOfThreads (b/15610509)
# Disable WorkerDetaches to green up devices (b/62246873) # Disable ProcessUtilTest.* (need to define OS_ANDROID)
gtest_excludes = [ # Disable StackContainer.BufferAlignment (don't support 16-byte alignment)
"ProcessMetricsTest.GetNumberOfThreads", # Disable SystemMetrics2Test.GetSystemMemoryInfo (buffers>0 can't be guaranteed)
"ProcessUtilTest.*", # Disable TimeFormattingTest.TimeFormat* for flakiness on devices (crbug/671429)
"StackContainer.BufferAlignment", # Disable PostTasksViaTaskRunner/* to green up devices (b/62246873)
"SystemMetrics2Test.GetSystemMemoryInfo", # Disable WorkerDetaches to green up devices (b/62246873)
"TimeFormattingTest.TimeFormat*", gtest_excludes += [
"OneTraitsExecutionModePair/TaskSchedulerImplTest.PostTasksViaTaskRunner/*", "ProcessMetricsTest.GetNumberOfThreads",
"TaskSchedulerWorkerTest.WorkerDetaches", "ProcessUtilTest.*",
] "StackContainer.BufferAlignment",
"SystemMetrics2Test.GetSystemMemoryInfo",
"TimeFormattingTest.TimeFormat*",
"OneTraitsExecutionModePair/TaskSchedulerImplTest.PostTasksViaTaskRunner/*",
"TaskSchedulerWorkerTest.WorkerDetaches",
]
}
if (is_cast_audio_only) { if (is_cast_audio_only) {
# Also disable TimeFormattingTest on audio-only builds, since we don't # Also disable TimeFormattingTest on audio-only builds, since we don't
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment