Merge "Skip test case for AVF since those are not supported." into main
This commit is contained in:
commit
c330132bda
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue