summaryrefslogtreecommitdiff
path: root/render-test/parser.hpp
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-10-09 13:26:28 +0300
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2019-10-09 14:35:08 +0300
commitb4e0224a5786f1d362b2b6b7e7f536be8bb98981 (patch)
tree9571c0aac878b7fff55ccff11726bcc73093fa81 /render-test/parser.hpp
parentd0281e3ca4686ca52b1b4d886dad4e8de27bdcfa (diff)
downloadqtlocation-mapboxgl-b4e0224a5786f1d362b2b6b7e7f536be8bb98981.tar.gz
[test runner] Fix finding of expected images paths
Before this change, the found paths to the expected images erroneously included the path to the `metrics.json` file (if this file was present) leading to raising of an unhandled exception.
Diffstat (limited to 'render-test/parser.hpp')
-rw-r--r--render-test/parser.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/render-test/parser.hpp b/render-test/parser.hpp
index afa281ad30..3c857b7e1e 100644
--- a/render-test/parser.hpp
+++ b/render-test/parser.hpp
@@ -18,7 +18,8 @@ JSONReply readJson(const mbgl::filesystem::path&);
std::string serializeJsonValue(const mbgl::JSValue&);
std::string serializeMetrics(const TestMetrics&);
-std::vector<std::string> readExpectedEntries(const mbgl::filesystem::path& base);
+std::vector<std::string> readExpectedImageEntries(const mbgl::filesystem::path& base);
+std::vector<std::string> readExpectedJSONEntries(const mbgl::filesystem::path& base);
TestMetrics readExpectedMetrics(const mbgl::filesystem::path& path);