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

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

binderUtilsHostTest: increase timeout to reduce flake

Flaking 0.16% of the time.

Change-Id: Ib36943efc6dba3b7f38b432c1d5b49b33d27c4b5
Fixes: 377571547
Test: N/A
parent e57dca01
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ TEST(UtilsHost, ExecuteLongRunning) {
        });
        auto elapsedMs = millisSince(start);
        EXPECT_GE(elapsedMs, 1000);
        EXPECT_LT(elapsedMs, 2000);
        EXPECT_LT(elapsedMs, 3000); // b/377571547: higher to reduce flake

        ASSERT_TRUE(result.has_value());
        EXPECT_EQ(std::nullopt, result->exitCode);
@@ -65,7 +65,7 @@ TEST(UtilsHost, ExecuteLongRunning) {

    // ~CommandResult() called, child process is killed.
    // Assert that the second sleep does not finish.
    EXPECT_LT(millisSince(start), 2000);
    EXPECT_LT(millisSince(start), 3000);
}

TEST(UtilsHost, ExecuteLongRunning2) {