commented test (#8596)
This commit is contained in:
parent
f800993e6f
commit
5352c2b370
@ -3,6 +3,7 @@
|
||||
//
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include <functional_test_utils/skip_tests_config.hpp>
|
||||
|
||||
#include "openvino/op/pad.hpp"
|
||||
#include "openvino/op/constant.hpp"
|
||||
@ -43,6 +44,7 @@ struct PadParams {
|
||||
class ReferencePadTest : public testing::TestWithParam<PadParams>, public CommonReferenceTest {
|
||||
public:
|
||||
void SetUp() override {
|
||||
SKIP_IF_CURRENT_TEST_IS_DISABLED();
|
||||
auto params = GetParam();
|
||||
function = CreateFunction(params);
|
||||
inputData = {params.inputData.data};
|
||||
|
@ -75,6 +75,8 @@ std::vector<std::string> disabledTestPatterns() {
|
||||
R"(.*ReferencePadTest.*pad_exterior_2d_0x0)",
|
||||
R"(.*ReferencePadTest.*pad_exterior_2d_0x3)",
|
||||
R"(.*ReferencePadTest.*pad_exterior_2d_3x0)",
|
||||
// CVS-70975
|
||||
R"(.*ReferencePadTestParamsTooLarge.*)",
|
||||
};
|
||||
|
||||
#ifdef _WIN32
|
||||
|
Loading…
Reference in New Issue
Block a user