summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Loer <chris.loer@gmail.com>2018-04-19 13:06:42 -0700
committerChris Loer <chris.loer@mapbox.com>2018-04-25 14:39:03 -0700
commit60cce56d46cb52c73fcb14d3917c1c47c328b72e (patch)
tree9f1bc02f885d0bebc3db27614446530e0f1e8303 /test
parenta62745edf9ee2da1f6ebda07acfd8260f3696e50 (diff)
downloadqtlocation-mapboxgl-60cce56d46cb52c73fcb14d3917c1c47c328b72e.tar.gz
Bump GL JS pin to get tests for global symbol querying.
- Pulls over an update to line.vertex.glsl (looks like a no-op?) - Add test ignores for collator, is-supported-script, line-gradient - Exclude collator, is-supported-script, line-gradient from code generation.
Diffstat (limited to 'test')
-rw-r--r--test/style/expression/expression.test.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/style/expression/expression.test.cpp b/test/style/expression/expression.test.cpp
index fe5c261be1..d5598d873b 100644
--- a/test/style/expression/expression.test.cpp
+++ b/test/style/expression/expression.test.cpp
@@ -29,6 +29,10 @@ TEST(Expression, IsExpression) {
for(auto& entry : allExpressions.GetObject()) {
const std::string name { entry.name.GetString(), entry.name.GetStringLength() };
+ if (name == "collator" || name == "line-progress" || name == "is-supported-script" || name == "resolved-locale") {
+ // Not yet implemented
+ continue;
+ }
JSDocument document;
document.Parse<0>(R"([")" + name + R"("])");