diff options
| -rw-r--r-- | libs/binder/tests/binderRpcTest.cpp | 4 | ||||
| -rw-r--r-- | libs/binder/tests/binderRpcTestTrusty.cpp | 4 |
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; } |