forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskip_tests_config.cpp
More file actions
26 lines (22 loc) · 856 Bytes
/
Copy pathskip_tests_config.cpp
File metadata and controls
26 lines (22 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2018-2026 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "functional_test_utils/skip_tests_config.hpp"
#include <string>
#include <vector>
const std::vector<std::regex>& disabled_test_patterns() {
const static std::vector<std::regex> patterns{
#ifdef OPENVINO_STATIC_LIBRARY
// Disable tests for static libraries
std::regex(".*FrontendLibCloseTest.*"),
#endif
std::regex(".*testUnloadLibBeforeDeletingDependentObject.*"),
// CVS-130605, CVS-170348
std::regex(".*paddle_yolo_box_uneven_wh_yolo_box_uneven_wh_pdmodel.*"),
std::regex(".*paddle_loop_dyn_loop_dyn_pdmodel.*"),
std::regex(".*paddle_scatter_test_1_scatter_test_1_pdmodel.*"),
std::regex(".*paddle_top_k_.*"),
std::regex(".*generate_proposals.*"),
};
return patterns;
}