fix skip in wait, io_tensor tests (#8503)

This commit is contained in:
Pavel Zamelin 2021-11-15 03:16:36 +03:00 committed by GitHub
parent 3c985ed592
commit beaec484bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -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();

View File

@ -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();