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

Commit 5e4c72ad authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "RPC Binder: smaller vector send in tests" into main

parents 7c2fcbd1 541229b0
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;