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

Commit 75105629 authored by Steven Moreland's avatar Steven Moreland
Browse files

binderRpcTest: reduce thread pool saturated flake

Limit one of the checks here since we tightened timings
around it.

Fixes: 278414056
Test: N/A
Change-Id: I9a86ef09784dd093e4ffd45c91892bb5788ab2a5
parent 9843b07b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -462,7 +462,7 @@ static void testThreadPoolOverSaturated(sp<IBinderRpcTest> iface, size_t numCall
    EXPECT_GE(epochMsAfter, epochMsBefore + 2 * sleepMs);

    // Potential flake, but make sure calls are handled in parallel.
    EXPECT_LE(epochMsAfter, epochMsBefore + 3 * sleepMs);
    EXPECT_LE(epochMsAfter, epochMsBefore + 4 * sleepMs);
}

TEST_P(BinderRpc, ThreadPoolOverSaturated) {