Commit 12fbf9f0 authored by rockot's avatar rockot Committed by Commit bot

disable most mojo_system_unittests on Android

BUG=585802
TBR=blundell@chromium.org

Review URL: https://codereview.chromium.org/1683903003

Cr-Commit-Position: refs/heads/master@{#374664}
parent a5d36dd9
...@@ -133,26 +133,33 @@ source_set("test_utils") { ...@@ -133,26 +133,33 @@ source_set("test_utils") {
test("mojo_system_unittests") { test("mojo_system_unittests") {
sources = [ sources = [
"awakable_list_unittest.cc",
"core_test_base.cc",
"core_test_base.h",
"core_unittest.cc",
"data_pipe_unittest.cc",
"message_pipe_unittest.cc",
"options_validation_unittest.cc", "options_validation_unittest.cc",
"platform_handle_dispatcher_unittest.cc",
"shared_buffer_dispatcher_unittest.cc",
"shared_buffer_unittest.cc",
"wait_set_dispatcher_unittest.cc",
"waiter_test_utils.cc",
"waiter_test_utils.h",
"waiter_unittest.cc",
] ]
if (!is_ios) { if (!is_ios) {
sources += [ "multiprocess_message_pipe_unittest.cc" ] sources += [ "multiprocess_message_pipe_unittest.cc" ]
} }
if (!is_android) {
# TODO(rockot): Re-enable tests on Android once we figure out what's causing
# them to time out en masse. http://crbug.com/585802
sources += [
"awakable_list_unittest.cc",
"core_test_base.cc",
"core_test_base.h",
"core_unittest.cc",
"data_pipe_unittest.cc",
"message_pipe_unittest.cc",
"platform_handle_dispatcher_unittest.cc",
"shared_buffer_dispatcher_unittest.cc",
"shared_buffer_unittest.cc",
"wait_set_dispatcher_unittest.cc",
"waiter_test_utils.cc",
"waiter_test_utils.h",
"waiter_unittest.cc",
]
}
deps = [ deps = [
":test_utils", ":test_utils",
"//base", "//base",
......
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