summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMolly Lloyd <molly@mapbox.com>2018-08-21 16:28:57 -0700
committerMolly Lloyd <molly@mapbox.com>2018-08-21 16:28:57 -0700
commitbd0eb8413881a06f8406f5bf784a8c913de951de (patch)
tree62c0a72d44d7745fdfcf569a18718bede163272e
parent0a67f8039b5862e7dbd605606fc979d6d9f1e5d3 (diff)
downloadqtlocation-mapboxgl-bd0eb8413881a06f8406f5bf784a8c913de951de.tar.gz
[core] add exception for unimplemented expressions in testsupstream/bump-gl-js-pin
-rw-r--r--test/style/expression/expression.test.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/style/expression/expression.test.cpp b/test/style/expression/expression.test.cpp
index 982a769b93..4c2ec5cf92 100644
--- a/test/style/expression/expression.test.cpp
+++ b/test/style/expression/expression.test.cpp
@@ -29,7 +29,11 @@ TEST(Expression, IsExpression) {
for(auto& entry : allExpressions.GetObject()) {
const std::string name { entry.name.GetString(), entry.name.GetStringLength() };
- if (name == "line-progress" || name == "feature-state") {
+ if (name == "line-progress" ||
+ name == "feature-state" ||
+ name == "interpolate-hcl" ||
+ name == "interpolate-lab" ||
+ name == "format") {
// Not yet implemented
continue;
}