Skip to content

Commit

Permalink
commented test (openvinotoolkit#8596)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sidorova authored Nov 15, 2021
1 parent f800993 commit 5352c2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/template_plugin/tests/functional/op_reference/pad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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};
Expand Down
2 changes: 2 additions & 0 deletions docs/template_plugin/tests/functional/skip_tests_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5352c2b

Please sign in to comment.