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

Commit 5602a1ad authored by Steven Moreland's avatar Steven Moreland
Browse files

binderRpcTest: named normal modes

Prevoiusly it was difficult to gtest_filter
for only the 'regular' tests - which is useful
for debugging issues interacting with kernel
binder.

Bug: N/A
Test: binderRpcTest
Change-Id: I943c885cb8a968d963a3c091e1930cc891dd790f
parent 65fac116
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -237,9 +237,13 @@ std::string BinderRpc::PrintParamInfo(const testing::TestParamInfo<ParamType>& i
            std::to_string(clientVersion) + "_serverV" + std::to_string(serverVersion);
    if (singleThreaded) {
        ret += "_single_threaded";
    } else {
        ret += "_multi_threaded";
    }
    if (noKernel) {
        ret += "_no_kernel";
    } else {
        ret += "_with_kernel";
    }
    return ret;
}
+4 −0
Original line number Diff line number Diff line
@@ -45,9 +45,13 @@ std::string BinderRpc::PrintParamInfo(const testing::TestParamInfo<ParamType>& i
            std::to_string(serverVersion);
    if (singleThreaded) {
        ret += "_single_threaded";
    } else {
        ret += "_multi_threaded";
    }
    if (noKernel) {
        ret += "_no_kernel";
    } else {
        ret += "_with_kernel";
    }
    return ret;
}