Commit 90cbedb3 authored by sdefresne's avatar sdefresne Committed by Commit bot

[iOS] Exclude tests with dependency on ASSERT_DEATH on iOS.

Those tests do not compile on iOS as ASSERT_DEATH is not defined
instead they should use ASSERT_DEATH_IF_SUPPORTED. Disable them
until the underlying issue if fixed in third-party library.

BUG=459705

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

Cr-Commit-Position: refs/heads/master@{#381705}
parent bb1db880
...@@ -200,6 +200,12 @@ if (!is_android || use_aura) { ...@@ -200,6 +200,12 @@ if (!is_android || use_aura) {
"chromium/trie_unittest.cc", "chromium/trie_unittest.cc",
] ]
if (is_ios) {
# TODO(rouslan): This tests uses ASSERT_DEATH which is not supported on
# iOS. Re-enable once http://crbug.com/595645 is fixed.
sources -= [ "src/cpp/test/address_data_test.cc" ]
}
configs -= [ "//build/config/compiler:chromium_code" ] configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ] configs += [ "//build/config/compiler:no_chromium_code" ]
......
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