test: Move bug cases to sub-directories

The test runner now recursively scans sub-directories.
Use this for sensibly structuring our test files.

test/bug/tint/###.[wgsl,spvasm] files refer to bugs filed at:
crbug.com/tint/###

Change-Id: I9b4d8d134c8494b0f48c8656f3bf694f76d5303f
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/51221
Commit-Queue: Ben Clayton <bclayton@chromium.org>
Reviewed-by: David Neto <dneto@google.com>
This commit is contained in:
Ben Clayton
2021-05-17 21:01:37 +00:00
committed by Commit Bot service account
parent c5eebaf7d6
commit 634c829d2c
5 changed files with 0 additions and 0 deletions

1851
test/bug/tint/749.spvasm Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
SKIP: TINT_UNIMPLEMENTED crbug.com/tint/726: module-scope private and workgroup variables not yet implemented

View File

@@ -0,0 +1 @@
SKIP: TINT_UNIMPLEMENTED crbug.com/tint/726: module-scope private and workgroup variables not yet implemented

View File

@@ -0,0 +1,5 @@
SKIP:
Validation Failure:
1:1: OpLoad Pointer <id> '51[%51]' is not a logical pointer.
%52 = OpLoad %int %51

8
test/bug/tint/782.wgsl Normal file
View File

@@ -0,0 +1,8 @@
type ArrayExplicitStride = [[stride(4)]] array<i32, 2>;
type ArrayImplicitStride = array<i32, 2>;
fn foo() {
var explicit : ArrayExplicitStride;
var implict : ArrayImplicitStride;
implict = explicit;
}