tint/fxc: delete and regen skips for e2e tests to capture FXC error messages in expected file

Helps with triaging.

Change-Id: I596fb33d9d60e2e364175cdd0ff1966f71423e99
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/103640
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
This commit is contained in:
Antonio Maiorano 2022-09-26 14:24:35 +00:00 committed by Dawn LUCI CQ
parent 4c70d7fff2
commit f56d8954e3
8 changed files with 37 additions and 8 deletions

View File

@ -1,4 +1,4 @@
SKIP: FAILED - f16 not supported with FXC SKIP: FAILED
void saturate_462535() { void saturate_462535() {
vector<float16_t, 3> res = saturate((float16_t(0.0h)).xxx); vector<float16_t, 3> res = saturate((float16_t(0.0h)).xxx);
@ -30,3 +30,6 @@ void compute_main() {
saturate_462535(); saturate_462535();
return; return;
} }
FXC validation failure:
C:\src\dawn\test\tint\Shader@0x00000234CFF040C0(2,10-18): error X3000: syntax error: unexpected token 'float16_t'

View File

@ -1,4 +1,4 @@
SKIP: FAILED - f16 not supported with FXC SKIP: FAILED
void saturate_cd2028() { void saturate_cd2028() {
vector<float16_t, 2> res = saturate((float16_t(0.0h)).xx); vector<float16_t, 2> res = saturate((float16_t(0.0h)).xx);
@ -30,3 +30,6 @@ void compute_main() {
saturate_cd2028(); saturate_cd2028();
return; return;
} }
FXC validation failure:
C:\src\dawn\test\tint\Shader@0x00000147A2EDE4A0(2,10-18): error X3000: syntax error: unexpected token 'float16_t'

View File

@ -1,4 +1,4 @@
SKIP: FAILED - f16 not supported with FXC SKIP: FAILED
void saturate_dcde71() { void saturate_dcde71() {
vector<float16_t, 4> res = saturate((float16_t(0.0h)).xxxx); vector<float16_t, 4> res = saturate((float16_t(0.0h)).xxxx);
@ -30,3 +30,6 @@ void compute_main() {
saturate_dcde71(); saturate_dcde71();
return; return;
} }
FXC validation failure:
C:\src\dawn\test\tint\Shader@0x000002580D780150(2,10-18): error X3000: syntax error: unexpected token 'float16_t'

View File

@ -1,4 +1,4 @@
SKIP: FAILED - f16 not supported with FXC SKIP: FAILED
void saturate_e8df56() { void saturate_e8df56() {
float16_t res = saturate(float16_t(0.0h)); float16_t res = saturate(float16_t(0.0h));
@ -30,3 +30,7 @@ void compute_main() {
saturate_e8df56(); saturate_e8df56();
return; return;
} }
FXC validation failure:
C:\src\dawn\test\tint\Shader@0x0000020A83F5F990(2,3-11): error X3000: unrecognized identifier 'float16_t'
C:\src\dawn\test\tint\Shader@0x0000020A83F5F990(2,13-15): error X3000: unrecognized identifier 'res'

View File

@ -1,4 +1,4 @@
SKIP: FAILED - f16 not supported with FXC SKIP: FAILED
void saturate_462535() { void saturate_462535() {
vector<float16_t, 3> arg_0 = (float16_t(0.0h)).xxx; vector<float16_t, 3> arg_0 = (float16_t(0.0h)).xxx;
@ -31,3 +31,7 @@ void compute_main() {
saturate_462535(); saturate_462535();
return; return;
} }
FXC validation failure:
C:\src\dawn\test\tint\Shader@0x000001DC3F306920(2,10-18): error X3000: syntax error: unexpected token 'float16_t'
C:\src\dawn\test\tint\Shader@0x000001DC3F306920(3,10-18): error X3000: syntax error: unexpected token 'float16_t'

View File

@ -1,4 +1,4 @@
SKIP: FAILED - f16 not supported with FXC SKIP: FAILED
void saturate_cd2028() { void saturate_cd2028() {
vector<float16_t, 2> arg_0 = (float16_t(0.0h)).xx; vector<float16_t, 2> arg_0 = (float16_t(0.0h)).xx;
@ -31,3 +31,7 @@ void compute_main() {
saturate_cd2028(); saturate_cd2028();
return; return;
} }
FXC validation failure:
C:\src\dawn\test\tint\Shader@0x00000112C07589F0(2,10-18): error X3000: syntax error: unexpected token 'float16_t'
C:\src\dawn\test\tint\Shader@0x00000112C07589F0(3,10-18): error X3000: syntax error: unexpected token 'float16_t'

View File

@ -1,4 +1,4 @@
SKIP: FAILED - f16 not supported with FXC SKIP: FAILED
void saturate_dcde71() { void saturate_dcde71() {
vector<float16_t, 4> arg_0 = (float16_t(0.0h)).xxxx; vector<float16_t, 4> arg_0 = (float16_t(0.0h)).xxxx;
@ -31,3 +31,7 @@ void compute_main() {
saturate_dcde71(); saturate_dcde71();
return; return;
} }
FXC validation failure:
C:\src\dawn\test\tint\Shader@0x0000023B2F7F4970(2,10-18): error X3000: syntax error: unexpected token 'float16_t'
C:\src\dawn\test\tint\Shader@0x0000023B2F7F4970(3,10-18): error X3000: syntax error: unexpected token 'float16_t'

View File

@ -1,4 +1,4 @@
SKIP: FAILED - f16 not supported with FXC SKIP: FAILED
void saturate_e8df56() { void saturate_e8df56() {
float16_t arg_0 = float16_t(0.0h); float16_t arg_0 = float16_t(0.0h);
@ -31,3 +31,7 @@ void compute_main() {
saturate_e8df56(); saturate_e8df56();
return; return;
} }
FXC validation failure:
C:\src\dawn\test\tint\Shader@0x000001DB75B70300(2,3-11): error X3000: unrecognized identifier 'float16_t'
C:\src\dawn\test\tint\Shader@0x000001DB75B70300(2,13-17): error X3000: unrecognized identifier 'arg_0'