diff options
| author | 2023-06-21 04:40:12 +0000 | |
|---|---|---|
| committer | 2023-06-21 04:40:12 +0000 | |
| commit | 0135b631e19f0dd7ec548995e0b1bf1b5ab2645f (patch) | |
| tree | 5c8fbdfd50c99fb882c96fdb7a7f11bc313e011e | |
| parent | b575c377c15c65faf817308e6f7400239f833646 (diff) | |
| parent | aec28ea26d2c8426ff6b723b0031406cccc024f6 (diff) | |
Merge "Revert "Remove leak detection options"" am: 7c853f50a8 am: 0313d5b5dc am: aec28ea26d
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2632029
Change-Id: I610cf468ebf3c501c392c041877974916aa8935d
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | libs/binder/tests/Android.bp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index 24fd2a6048..41856f9b79 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp @@ -804,5 +804,12 @@ cc_defaults { cc_defaults { name: "fuzzer_disable_leaks", - //TODO(b/286112918) : Readd leak detection options + fuzz_config: { + asan_options: [ + "detect_leaks=0", + ], + hwasan_options: [ + "detect_leaks=0", + ], + }, } |