* Fixed tests compilation for Android ARM * Small fixes * Fixed issues CVS-44775, CVS-34206, CVS-34349 * Disabled KSO tests for Template * Eliminated invalid subgraphs * Enabled KSO QueryNetwork tests for Template * Fixed other plugins as well * Used NodeTypeInfo instead of std::string Co-authored-by: apankratovantonp <anton.pankratov@intel.com>
18 lines
426 B
C++
18 lines
426 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 {
|
|
".*ExclusiveAsyncRequests.*",
|
|
".*reusableCPUStreamsExecutor.*",
|
|
R"(.*SplitLayerTest.*numSplits\=30.*)",
|
|
// CVS-44774
|
|
".*PreprocessTest.*",
|
|
};
|
|
} |