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

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

Merge "binderRpcTest: work when vsock not supported" am: bf5fdedf

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1788713

Change-Id: I1d438066a5487b4530d072472ddd04b987298cf9
parents 9ace5a97 bf5fdedf
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -1196,7 +1196,12 @@ static bool testSupportVsockLoopback() {
    unsigned int vsockPort = allocateVsockPort();
    sp<RpcServer> server = RpcServer::make(RpcTransportCtxFactoryRaw::make());
    server->iUnderstandThisCodeIsExperimentalAndIWillNotUseItInProduction();
    CHECK_EQ(OK, server->setupVsockServer(vsockPort));
    if (status_t status = server->setupVsockServer(vsockPort); status != OK) {
        if (status == -EAFNOSUPPORT) {
            return false;
        }
        LOG_ALWAYS_FATAL("Could not setup vsock server: %s", statusToString(status).c_str());
    }
    server->start();

    sp<RpcSession> session = RpcSession::make(RpcTransportCtxFactoryRaw::make());