fix skip in wait, io_tensor tests (#8503)
This commit is contained in:
parent
3c985ed592
commit
beaec484bb
@ -18,6 +18,8 @@ std::string OVInferRequestIOTensorTest::getTestCaseName(const testing::TestParam
|
||||
}
|
||||
|
||||
void OVInferRequestIOTensorTest::SetUp() {
|
||||
// Skip test according to plugin specific disabledTestPatterns() (if any)
|
||||
SKIP_IF_CURRENT_TEST_IS_DISABLED()
|
||||
OVInferRequestTests::SetUp();
|
||||
req = execNet.create_infer_request();
|
||||
input = execNet.input();
|
||||
|
@ -14,6 +14,8 @@ std::string OVInferRequestWaitTests::getTestCaseName(const testing::TestParamInf
|
||||
}
|
||||
|
||||
void OVInferRequestWaitTests::SetUp() {
|
||||
// Skip test according to plugin specific disabledTestPatterns() (if any)
|
||||
SKIP_IF_CURRENT_TEST_IS_DISABLED()
|
||||
OVInferRequestTests::SetUp();
|
||||
req = execNet.create_infer_request();
|
||||
input = execNet.input();
|
||||
|
Loading…
Reference in New Issue
Block a user