summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorlliabraa@chromium.org <lliabraa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-16 12:13:14 +0000
committerlliabraa@chromium.org <lliabraa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-16 12:13:14 +0000
commitb9ad1c70d6690167b8e805939562d5d36bcaf62a (patch)
tree3431698c296c4c6fc682fb7ab59f1b175f71d54a /base
parenta7f53d386894059cd75277eb97515925342e5747 (diff)
downloadchromium_src-b9ad1c70d6690167b8e805939562d5d36bcaf62a.zip
chromium_src-b9ad1c70d6690167b8e805939562d5d36bcaf62a.tar.gz
chromium_src-b9ad1c70d6690167b8e805939562d5d36bcaf62a.tar.bz2
Remove some unit tests from iOS coverage builds
Several unit tests cause the test app to crash when run with coverage=1. BUG=156058 Review URL: https://chromiumcodereview.appspot.com/11155006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162126 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/base.gyp14
1 files changed, 12 insertions, 2 deletions
diff --git a/base/base.gyp b/base/base.gyp
index bf596fd..2d5ef34 100644
--- a/base/base.gyp
+++ b/base/base.gyp
@@ -582,11 +582,21 @@
],
'conditions': [
['coverage != 0', {
- # These sources can't be built with coverage due to a toolchain
- # bug: http://openradar.appspot.com/radar?id=1499403
'sources!': [
+ # These sources can't be built with coverage due to a toolchain
+ # bug: http://openradar.appspot.com/radar?id=1499403
'json/json_reader_unittest.cc',
'string_piece_unittest.cc',
+
+ # These tests crash when run with coverage turned on due to an
+ # issue with llvm_gcda_increment_indirect_counter:
+ # http://crbug.com/156058
+ 'debug/trace_event_unittest.cc',
+ 'debug/trace_event_unittest.h',
+ 'logging_unittest.cc',
+ 'string_util_unittest.cc',
+ 'test/trace_event_analyzer_unittest.cc',
+ 'utf_offset_string_conversions_unittest.cc',
],
}],
],