Add new GLSL test expectations.

All failures are now SKIP'ed.

Bug: tint:1358
Change-Id: If04d57b9e0b71dd877468b5dc277fbff82f36692
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/75220
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
Commit-Queue: Stephen White <senorblanco@chromium.org>
This commit is contained in:
Stephen White
2022-01-06 15:31:21 +00:00
committed by Tint LUCI CQ
parent 6165cca1a6
commit c1faee9395
524 changed files with 29699 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#version 310 es
precision mediump float;
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void f() {
vec3 a = vec3(1.0f, 2.0f, 3.0f);
vec3 r = (a / 0.0f);
return;
}
void main() {
f();
}

View File

@@ -0,0 +1,14 @@
#version 310 es
precision mediump float;
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void f() {
ivec3 a = ivec3(1, 2, 3);
ivec3 r = (a / 0);
return;
}
void main() {
f();
}

View File

@@ -0,0 +1,14 @@
#version 310 es
precision mediump float;
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void f() {
uvec3 a = uvec3(1u, 2u, 3u);
uvec3 r = (a / 0u);
return;
}
void main() {
f();
}