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

Commit c2a77771 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "binderAllocationLimits - fix for 32-bit" am: 2adb9ddf am: 56e8b94b am: 1bb3ec2b

parents 9b1052f1 1bb3ec2b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -180,7 +180,11 @@ TEST(BinderAllocation, InterfaceDescriptorTransaction) {
        mallocs++;
        // Happens to be SM package length. We could switch to forking
        // and registering our own service if it became an issue.
#if defined(__LP64__)
        EXPECT_EQ(bytes, 78);
#else
        EXPECT_EQ(bytes, 70);
#endif
    });

    a_binder->getInterfaceDescriptor();