Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ce490cb2 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "BpBinder fuzzer: wait longer" am: 06653f62

parents 68dfe215 06653f62
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -51,8 +51,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
    sp<RpcSession> session = RpcSession::make();
    session->setMaxIncomingThreads(1);
    status_t status;
    for (size_t tries = 0; tries < 5; tries++) {
        usleep(10000);

    // b/274084938 - ASAN may be slow, wait a while
    for (size_t tries = 0; tries < 50; tries++) {
        usleep(100000);
        status = session->setupUnixDomainClient(addr.c_str());
        if (status == OK) break;
    }