Files
openvino/docs/template_plugin/tests/functional/skip_tests_config.cpp

18 lines
446 B
C++
Raw Normal View History

2020-05-22 22:34:00 +03:00
// 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 {
".*ExclusiveAsyncRequests.*",
".*reusableCPUStreamsExecutor.*",
".*registerPlugin.*",
".*IEClassGetAvailableDevices.*",
R"(.*SplitLayerTest.*numSplits\=30.*)"
2020-05-22 22:34:00 +03:00
};
}