diff options
author | Mitch Phillips <mitchp@google.com> | 2019-05-01 14:26:13 -0700 |
---|---|---|
committer | Mitch Phillips <mitchp@google.com> | 2019-05-30 16:49:13 +0000 |
commit | dfde0eeee169f4a7e28f91e6f0d2902cc6d9ecc0 (patch) | |
tree | 49ec307ef79ee3641dd10ac811dba5f7fa127a64 /libm | |
parent | cfede4fdd1f98549a933c48622d6866c0afeaae6 (diff) |
Change SANITIZE_TARGET refs from 'coverage' to 'fuzzer'.
Cleanup of references to 'coverage' in build files. Part of a larger
cleanup to make fuzzing work again in the Android build tree.
Also fixed a test issue with emulated TLS with the new changes, and
removed libc.so fuzzer support until a linked bug is fixed
(b/132640749).
Bug: 121042685
Test: With all patches in the bug merged: mmma bionic
Change-Id: I592352fe9210ff811a2660a88cbbfe48d70a1e57
Merged-In: I592352fe9210ff811a2660a88cbbfe48d70a1e57
Diffstat (limited to 'libm')
-rw-r--r-- | libm/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/Android.bp b/libm/Android.bp index 48b9a5f06..6d17e8643 100644 --- a/libm/Android.bp +++ b/libm/Android.bp @@ -503,7 +503,7 @@ cc_library { native_coverage: bionic_coverage, sanitize: { address: false, - coverage: false, + fuzzer: false, integer_overflow: false, }, stl: "none", |