summaryrefslogtreecommitdiff
path: root/render-test/manifest_parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'render-test/manifest_parser.cpp')
-rw-r--r--render-test/manifest_parser.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/render-test/manifest_parser.cpp b/render-test/manifest_parser.cpp
index e3217f0f50..6658b3ee0d 100644
--- a/render-test/manifest_parser.cpp
+++ b/render-test/manifest_parser.cpp
@@ -465,9 +465,13 @@ mbgl::optional<Manifest> ManifestParser::parseManifest(const std::string& manife
auto testId = defaultExpectationPath.string();
testId = testId.substr(rootLength + 1, testId.length() - rootLength - 1);
+ std::vector<mbgl::filesystem::path> expectedMetricPaths{expectedMetricPath};
+#if defined(__ANDROID__)
+ expectedMetricPaths.emplace_back("/sdcard/");
+#endif
testPaths.emplace_back(testPath,
getTestExpectations(defaultExpectationPath, testId, expectationPaths),
- getTestExpectations(defaultExpectationPath, testId, {expectedMetricPath}));
+ getTestExpectations(defaultExpectationPath, testId, expectedMetricPaths));
}
}
}