commit | 475f66c1ab0cba95e2b5fab557f9da6bbb27078b | [log] [tgz] |
---|---|---|
author | Pawan Wagh <waghpawan@google.com> | Fri May 05 21:46:07 2023 +0000 |
committer | Pawan Wagh <waghpawan@google.com> | Fri May 05 23:46:40 2023 +0000 |
tree | 8e804fa7f9359216db3dee8a4e38ae6f7eb6f78b | |
parent | 9e35022143467684ef11ca6c75ddcc3460bce888 [diff] |
Adding cc_defaults to disable leaks Bug: N/A Test: N/A Change-Id: Ibb02b1573c9ddfca4bc23a861fcd5d1818e8088a
diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index 0280c96..4929b34 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp
@@ -792,3 +792,15 @@ hotlists: ["4637097"], }, } + +cc_defaults { + name: "fuzzer_disable_leaks", + fuzz_config: { + asan_options: [ + "detect_leaks=0", + ], + hwasan_options: [ + "detect_leaks=0", + ], + }, +}