From 49cf31d2b8918fbfaf5becb6c068b44af29a2276 Mon Sep 17 00:00:00 2001 From: Molly Lloyd Date: Tue, 21 Aug 2018 16:28:57 -0700 Subject: [core] add exception for unimplemented expressions in tests --- test/style/expression/expression.test.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; } -- cgit v1.2.1