Merge "Skip test case for AVF since those are not supported." into main

This commit is contained in:
Treehugger Robot 2023-11-15 01:12:02 +00:00 committed by Gerrit Code Review
commit c330132bda

View file

@ -34,6 +34,10 @@ class RkpdClientTest : public testing::TestWithParam<std::string> {
public:
virtual void SetUp() override {
auto rpcName = String16(GetParam().c_str());
String16 avfName = String16(IRemotelyProvisionedComponent::descriptor) + String16("/avf");
if (avfName == rpcName) {
GTEST_SKIP() << "Skipping test for avf";
}
rpc_ = android::waitForService<IRemotelyProvisionedComponent>(rpcName);
ASSERT_NE(rpc_, nullptr);
}