summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMolly Lloyd <molly@mapbox.com>2018-08-21 16:28:57 -0700
committerChris Loer <chris.loer@mapbox.com>2018-08-21 22:02:51 -0700
commit49cf31d2b8918fbfaf5becb6c068b44af29a2276 (patch)
treedd77c34a53c848aa769ca589516aefc0b784cbd7
parentfd1767efba85dcfa5a3db27136306eca53519b8a (diff)
downloadqtlocation-mapboxgl-49cf31d2b8918fbfaf5becb6c068b44af29a2276.tar.gz
[core] add exception for unimplemented expressions in tests
-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;
}