diff options
author | Molly Lloyd <molly@mapbox.com> | 2018-08-21 16:28:57 -0700 |
---|---|---|
committer | Chris Loer <chris.loer@mapbox.com> | 2018-08-21 22:02:51 -0700 |
commit | 49cf31d2b8918fbfaf5becb6c068b44af29a2276 (patch) | |
tree | dd77c34a53c848aa769ca589516aefc0b784cbd7 /test | |
parent | fd1767efba85dcfa5a3db27136306eca53519b8a (diff) | |
download | qtlocation-mapboxgl-49cf31d2b8918fbfaf5becb6c068b44af29a2276.tar.gz |
[core] add exception for unimplemented expressions in tests
Diffstat (limited to 'test')
-rw-r--r-- | test/style/expression/expression.test.cpp | 6 |
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; } |