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

Commit 541229b0 authored by Steven Moreland's avatar Steven Moreland
Browse files

RPC Binder: smaller vector send in tests

This is too slow and causing flakes.

Bugs: me
Test: N/A
Flag: EXEMPT .
Change-Id: Ieb0471e5a5832d6b7c495c4a62b10d0a4e614c6b
parent 5ae553fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -214,7 +214,7 @@ TEST_P(BinderRpc, SendLargeVector) {

    // see libbinder internal Constants.h
    // We use a smaller size for TIPC because a 15MB test is too slow and times out
    size_t kLargeSize = socketType() == SocketType::TIPC ? 128 * 1024 : 15 * 1024 * 1024;
    size_t kLargeSize = socketType() == SocketType::TIPC ? 128 * 1024 : 1 * 1024 * 1024;
    const std::vector<uint8_t> kTestValue(kLargeSize / sizeof(uint8_t), 42);

    std::vector<uint8_t> result;