summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2023-03-07 09:32:07 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-03-07 09:32:07 +0000
commit54916ea5b3ea8be14ffbe13e02c3b953a02c512c (patch)
treef7df0ebcdcf16a2b39664302ac9e30492e824788
parent896febc017c6fa5e52d0c65aeeec8d5181fd46c4 (diff)
parent5602a1adf44e6b7b2848b9a4f134ebed6d9f5461 (diff)
Merge "binderRpcTest: named normal modes"
-rw-r--r--libs/binder/tests/binderRpcTest.cpp4
-rw-r--r--libs/binder/tests/binderRpcTestTrusty.cpp4
2 files changed, 8 insertions, 0 deletions
diff --git a/libs/binder/tests/binderRpcTest.cpp b/libs/binder/tests/binderRpcTest.cpp
index 6e34d254bb..407a79194f 100644
--- a/libs/binder/tests/binderRpcTest.cpp
+++ b/libs/binder/tests/binderRpcTest.cpp
@@ -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;
}
diff --git a/libs/binder/tests/binderRpcTestTrusty.cpp b/libs/binder/tests/binderRpcTestTrusty.cpp
index 84abbac6c6..63b56a3a64 100644
--- a/libs/binder/tests/binderRpcTestTrusty.cpp
+++ b/libs/binder/tests/binderRpcTestTrusty.cpp
@@ -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;
}