* Temporary disable PriorBoxClustered tests due to rare sporadic failures * Added skip_tests_config for TransformationTests
17 lines
397 B
C++
17 lines
397 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.*",
|
|
};
|
|
}
|