25 lines
746 B
C++
25 lines
746 B
C++
// Copyright (C) 2020 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "functional_test_utils/skip_tests_config.hpp"
|
|
|
|
std::vector<std::string> disabledTestPatterns() {
|
|
return {
|
|
// TODO: FIX BUG 33375
|
|
// Disabled due to rare sporadic failures.
|
|
".*TransformationTests\\.ConstFoldingPriorBoxClustered.*",
|
|
// TODO: task 32568, enable after supporting constants outputs in plugins
|
|
".*TransformationTests\\.ConstFoldingPriorBox.*",
|
|
#if !defined(ENABLE_V10_SERIALIZE)
|
|
// Disable tests for serialization
|
|
".*SerializationTest.*",
|
|
".*CustomOpsSerializationTest.*",
|
|
".*SerializationDeterministicityTest.*",
|
|
#endif
|
|
};
|
|
}
|