diff --git a/docs/template_plugin/tests/functional/op_reference/exp.cpp b/docs/template_plugin/tests/functional/op_reference/exp.cpp index 258aa07a02d..98fc79a05e3 100644 --- a/docs/template_plugin/tests/functional/op_reference/exp.cpp +++ b/docs/template_plugin/tests/functional/op_reference/exp.cpp @@ -7,6 +7,8 @@ #include "openvino/op/exp.hpp" #include "base_reference_test.hpp" +#include "functional_test_utils/skip_tests_config.hpp" + using namespace reference_tests; using namespace ov; using namespace InferenceEngine; @@ -31,6 +33,7 @@ struct ExpParams { class ReferenceExpLayerTest : public testing::TestWithParam, public CommonReferenceTest { public: void SetUp() override { + SKIP_IF_CURRENT_TEST_IS_DISABLED(); auto params = GetParam(); function = CreateFunction(params.pshape, params.inType, params.outType); inputData = {params.inputData}; @@ -160,9 +163,7 @@ std::vector generateExpCombinedParams() { generateExpFloatParams(), generateExpFloatParams(), generateExpIntParams(), - generateExpIntParams(), - generateExpUintParams(), - generateExpUintParams() + generateExpIntParams() }; std::vector combinedParams; @@ -191,4 +192,4 @@ INSTANTIATE_TEST_SUITE_P(smoke_Exp_With_Hardcoded_Refs, ReferenceExpLayerTest, INSTANTIATE_TEST_SUITE_P(smoke_Exp_In_Place_With_Hardcoded_Refs, ReferenceExpInPlaceLayerTest, testing::ValuesIn(generateExpInPlaceCombinedParams()), ReferenceExpInPlaceLayerTest::getTestCaseName); -} // namespace \ No newline at end of file +} // namespace diff --git a/docs/template_plugin/tests/functional/skip_tests_config.cpp b/docs/template_plugin/tests/functional/skip_tests_config.cpp index 98fd4a52f2b..4788d145855 100644 --- a/docs/template_plugin/tests/functional/skip_tests_config.cpp +++ b/docs/template_plugin/tests/functional/skip_tests_config.cpp @@ -88,7 +88,9 @@ std::vector disabledTestPatterns() { R"(.*ReferenceSpaceToBatchLayerTest.*dType=u4.*)", // CVS-64066 R"(.*ReferenceGRUCellTestHardsigmoidActivationFunction.*gru_cell_hardsigmoid_activation_function)", - R"(.*ReferenceErfLayerTest.*shape={8}.*)" + // CVS-71381 + R"(.*ReferenceExpLayerTest.*u32.*)", + R"(.*ReferenceExpLayerTest.*u64.*)", }; #ifdef _WIN32