aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SkSLErrorTest.cpp
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2016-11-01 11:57:42 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-01 17:46:51 +0000
commit4578a8e4a20260b64e0765010d41f5ee6e2c4080 (patch)
treed13270e130b2c8548e68355d3424844495aa9b77 /tests/SkSLErrorTest.cpp
parenta9e9bfc6e40894c0447c044a380c74061cb9e15e (diff)
fixed skslc's handling of ivec(vec)
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4222 Change-Id: I9b32067af51f3a04efa702cf2eb1ac1ed480df6a Reviewed-on: https://skia-review.googlesource.com/4222 Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'tests/SkSLErrorTest.cpp')
-rw-r--r--tests/SkSLErrorTest.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/SkSLErrorTest.cpp b/tests/SkSLErrorTest.cpp
index 3afb64fe61..9e89b71473 100644
--- a/tests/SkSLErrorTest.cpp
+++ b/tests/SkSLErrorTest.cpp
@@ -94,6 +94,12 @@ DEF_TEST(SkSLConstructorTypeMismatch, r) {
"void main() { vec2 x = vec2(1.0, false); }",
"error: 1: expected 'float', but found 'bool'\n1 error\n");
test_failure(r,
+ "void main() { vec2 x = vec2(bvec2(false)); }",
+ "error: 1: 'bvec2' is not a valid parameter to 'vec2' constructor\n1 error\n");
+ test_failure(r,
+ "void main() { bvec2 x = bvec2(vec2(1)); }",
+ "error: 1: 'vec2' is not a valid parameter to 'bvec2' constructor\n1 error\n");
+ test_failure(r,
"void main() { bool x = bool(1.0); }",
"error: 1: cannot construct 'bool'\n1 error\n");
test_failure(r,