trusty: Increase maximum number of coverage counters

Confirmation UI TA has 52585 counters.

Bug: 171750250
Test: trusty_confirmationui_tipc_fuzzer
Change-Id: Iecb7c88c41c67ce4ab22c56b9e34ad5370b4018d
This commit is contained in:
Tri Vo 2021-06-24 22:21:41 -07:00
parent 391056ea73
commit 8ad386576f

View file

@ -33,7 +33,7 @@ using android::base::Result;
* We don't know how many counters the coverage record will contain. So, eyeball
* the size of this section.
*/
static const size_t kMaxNumCounters = 0x8000;
static const size_t kMaxNumCounters = 0x10000;
__attribute__((section("__libfuzzer_extra_counters"))) volatile uint8_t counters[kMaxNumCounters];
namespace android {