commit | b86cda40e1eff3f9157e5677f25d5933ea8b1392 | [log] [tgz] |
---|---|---|
author | Frederick Mayle <fmayle@google.com> | Thu Jun 09 23:17:45 2022 +0000 |
committer | Frederick Mayle <fmayle@google.com> | Thu Jun 09 23:17:45 2022 +0000 |
tree | ff024e01566b479f3f47aeaa79632e8891f3f6d6 | |
parent | 68aa3bc6d6081c983005d0b70e7dd3f22265a0f8 [diff] [blame] |
libbinder: Don't alloc for RPC_COMMAND_DEC_STRONG Test: TH Change-Id: I89eb9d87cd6d306d13b879649d209c6b6abd2494
diff --git a/libs/binder/tests/binderAllocationLimits.cpp b/libs/binder/tests/binderAllocationLimits.cpp index 2c34766..60b3c94 100644 --- a/libs/binder/tests/binderAllocationLimits.cpp +++ b/libs/binder/tests/binderAllocationLimits.cpp
@@ -210,8 +210,8 @@ }); CHECK_EQ(OK, remoteBinder->pingBinder()); } - EXPECT_EQ(mallocs, 2); - EXPECT_EQ(totalBytes, 56); + EXPECT_EQ(mallocs, 1); + EXPECT_EQ(totalBytes, 40); } int main(int argc, char** argv) {