commented test (#8596)

This commit is contained in:
Alexandra Sidorova 2021-11-15 17:01:02 +03:00 committed by GitHub
parent f800993e6f
commit 5352c2b370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,7 @@
// //
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include <functional_test_utils/skip_tests_config.hpp>
#include "openvino/op/pad.hpp" #include "openvino/op/pad.hpp"
#include "openvino/op/constant.hpp" #include "openvino/op/constant.hpp"
@ -43,6 +44,7 @@ struct PadParams {
class ReferencePadTest : public testing::TestWithParam<PadParams>, public CommonReferenceTest { class ReferencePadTest : public testing::TestWithParam<PadParams>, public CommonReferenceTest {
public: public:
void SetUp() override { void SetUp() override {
SKIP_IF_CURRENT_TEST_IS_DISABLED();
auto params = GetParam(); auto params = GetParam();
function = CreateFunction(params); function = CreateFunction(params);
inputData = {params.inputData.data}; inputData = {params.inputData.data};

View File

@ -75,6 +75,8 @@ std::vector<std::string> disabledTestPatterns() {
R"(.*ReferencePadTest.*pad_exterior_2d_0x0)", R"(.*ReferencePadTest.*pad_exterior_2d_0x0)",
R"(.*ReferencePadTest.*pad_exterior_2d_0x3)", R"(.*ReferencePadTest.*pad_exterior_2d_0x3)",
R"(.*ReferencePadTest.*pad_exterior_2d_3x0)", R"(.*ReferencePadTest.*pad_exterior_2d_3x0)",
// CVS-70975
R"(.*ReferencePadTestParamsTooLarge.*)",
}; };
#ifdef _WIN32 #ifdef _WIN32