From 951b5eed92cd560da052ed35159798f9675dfef0 Mon Sep 17 00:00:00 2001 From: Evgeny Latkin Date: Fri, 3 Jul 2020 17:33:37 +0300 Subject: [PATCH] [IE][VPU] exclude test: conv_3x3s1p1_vgg (issue: 34466) (#1204) --- .../functional/vpu/common/myriad_hw_conv_tests.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/inference-engine/tests_deprecated/functional/vpu/common/myriad_hw_conv_tests.hpp b/inference-engine/tests_deprecated/functional/vpu/common/myriad_hw_conv_tests.hpp index 9cd50e7..4ea2d26 100644 --- a/inference-engine/tests_deprecated/functional/vpu/common/myriad_hw_conv_tests.hpp +++ b/inference-engine/tests_deprecated/functional/vpu/common/myriad_hw_conv_tests.hpp @@ -6,6 +6,8 @@ #include "myriad_hw_tests_base.hpp" +#include + using HWConvParams = std::tuple; class MyriadX_HW_Convolution_Tests_nightly @@ -145,6 +147,18 @@ TEST_P(MyriadX_HW_Convolution_Tests_nightly, WithClamp) { SKIP() << "Non-MyriadX device"; } + // TODO: Issue: 34466 + if (CheckMA2085()) { + const ::testing::TestInfo* const test_info = + ::testing::UnitTest::GetInstance()->current_test_info(); + const char* test_name = test_info->name(); + const char* test_case = test_info->test_case_name(); + if (!strcmp(test_name, "WithClamp/0") && + !strcmp(test_case, "conv_3x3s1p1_vgg/MyriadX_HW_Convolution_Tests_nightly")) { + SKIP() << "Issue: 34466"; + } + } + AddConvolutionLayer(); AddClampLayer(); -- 2.7.4