aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SkSLErrorTest.cpp
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2018-03-28 15:16:15 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-03-29 13:41:25 +0000
commit23463004dfbcaf8e0bbf28d405c69b45bca8d9c8 (patch)
tree37df09ba2e1e22e6c5514e8b1bf24857ad581fbf /tests/SkSLErrorTest.cpp
parent0090ef6a837f339ecc8b1d5e1e50697fbcd2e76a (diff)
fixed type mismatches in SkSL comparison operators
Bug: skia: Change-Id: I8f05088c561a80549264f7a65cb8161bbe7d8f4c Reviewed-on: https://skia-review.googlesource.com/116982 Reviewed-by: Chris Dalton <csmartdalton@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@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 9c43ac5197..c24a25d832 100644
--- a/tests/SkSLErrorTest.cpp
+++ b/tests/SkSLErrorTest.cpp
@@ -245,6 +245,12 @@ DEF_TEST(SkSLBinaryTypeMismatch, r) {
test_failure(r,
"void main() { bool x = 1 || 2.0; }",
"error: 1: type mismatch: '||' cannot operate on 'int', 'float'\n1 error\n");
+ test_failure(r,
+ "void main() { bool x = float2(0) == 0; }",
+ "error: 1: type mismatch: '==' cannot operate on 'float2', 'int'\n1 error\n");
+ test_failure(r,
+ "void main() { bool x = float2(0) != 0; }",
+ "error: 1: type mismatch: '!=' cannot operate on 'float2', 'int'\n1 error\n");
}
DEF_TEST(SkSLCallNonFunction, r) {