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

Commit 9aaf913c authored by Frederick Mayle's avatar Frederick Mayle Committed by Android Build Coastguard Worker
Browse files

libbinder: fix build error in test

The PLOGE macro doesn't exist on this branch.

Ignore-AOSP-First: branch specific fix
Bug: 359179312
Test: m binderLibTest
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:05370ee5ce50f367f12fb58f1e49dfbc3973bd6f)
Merged-In: I17689437c97001abf5fde5ad789303267ff10c94
Change-Id: I17689437c97001abf5fde5ad789303267ff10c94
parent a303038b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@
#include <gmock/gmock.h>
#include <gtest/gtest.h>

#include <android-base/logging.h>
#include <android-base/properties.h>
#include <android-base/result-gmock.h>
#include <android-base/strings.h>
@@ -2082,12 +2083,12 @@ public:
            case BINDER_LIB_TEST_GET_FILE_DESCRIPTORS_OWNED_TRANSACTION: {
                unique_fd fd1(memfd_create("memfd1", MFD_CLOEXEC));
                if (!fd1.ok()) {
                    PLOGE("memfd_create failed");
                    PLOG(ERROR) << "memfd_create failed";
                    return UNKNOWN_ERROR;
                }
                unique_fd fd2(memfd_create("memfd2", MFD_CLOEXEC));
                if (!fd2.ok()) {
                    PLOGE("memfd_create failed");
                    PLOG(ERROR) << "memfd_create failed";
                    return UNKNOWN_ERROR;
                }
                status_t ret;