aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SkSLErrorTest.cpp
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-10-10 10:09:00 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-10-10 10:09:00 -0700
commitdcfe6dba4a335e50e86ff68e3252065d4197432c (patch)
tree6953805849e283220d56f4feac3358b5efea3cc9 /tests/SkSLErrorTest.cpp
parent95304e395c46bdd40decbb7ccd46939886cc1244 (diff)
Turned on SkSL->GLSL compiler
Diffstat (limited to 'tests/SkSLErrorTest.cpp')
-rw-r--r--tests/SkSLErrorTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/SkSLErrorTest.cpp b/tests/SkSLErrorTest.cpp
index 75fa20d7e3..400ab6dc57 100644
--- a/tests/SkSLErrorTest.cpp
+++ b/tests/SkSLErrorTest.cpp
@@ -263,8 +263,8 @@ DEF_TEST(SkSLBadIndex, r) {
"void main() { int x = 2[0]; }",
"error: 1: expected array, but found 'int'\n1 error\n");
test_failure(r,
- "void main() { vec2 x = vec2(0); int y = x[0]; }",
- "error: 1: expected array, but found 'vec2'\n1 error\n");
+ "void main() { vec2 x = vec2(0); int y = x[0][0]; }",
+ "error: 1: expected array, but found 'float'\n1 error\n");
}
DEF_TEST(SkSLTernaryMismatch, r) {