[IE TESTS] Skip sporadic failures for ref test (#8685)

This commit is contained in:
Irina Efode 2021-11-18 18:52:46 +03:00 committed by GitHub
parent 71c28b3f9f
commit 3efd842dd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@
//
#include <gtest/gtest.h>
#include "functional_test_utils/skip_tests_config.hpp"
#include "openvino/op/erf.hpp"
#include "base_reference_test.hpp"
@ -43,6 +44,7 @@ struct ErfParams {
class ReferenceErfLayerTest : public testing::TestWithParam<ErfParams>, 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};

View File

@ -88,6 +88,7 @@ std::vector<std::string> disabledTestPatterns() {
R"(.*ReferenceSpaceToBatchLayerTest.*dType=u4.*)",
// CVS-64066
R"(.*ReferenceGRUCellTestHardsigmoidActivationFunction.*gru_cell_hardsigmoid_activation_function)",
R"(.*ReferenceErfLayerTest.*shape={8}.*)"
};
#ifdef _WIN32