From d8b1b2bacf0dd9812d62077a825067441037791b Mon Sep 17 00:00:00 2001 From: zmiao Date: Mon, 4 Nov 2019 18:34:30 +0200 Subject: [render-test]Fix regex match for testFilter input (#15886) --- render-test/manifest_parser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/render-test/manifest_parser.cpp b/render-test/manifest_parser.cpp index f1884634e5..3e56138e83 100644 --- a/render-test/manifest_parser.cpp +++ b/render-test/manifest_parser.cpp @@ -385,8 +385,8 @@ mbgl::optional ManifestParser::parseManifest(const std::string& manife continue; } for (auto& testPath : mbgl::filesystem::recursive_directory_iterator(path)) { - // Skip paths that fail regexp match. - if (!testFilter.empty() && !std::regex_match(testPath.path().string(), std::regex(testFilter))) { + // Skip paths that fail regexp search. + if (!testFilter.empty() && !std::regex_search(testPath.path().string(), std::regex(testFilter))) { continue; } -- cgit v1.2.1