mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-08 13:14:56 +00:00
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:
committed by
Commit Bot service account
parent
c5eebaf7d6
commit
634c829d2c
1851
test/bug/tint/749.spvasm
Normal file
1851
test/bug/tint/749.spvasm
Normal file
File diff suppressed because it is too large
Load Diff
1
test/bug/tint/749.spvasm.expected.hlsl
Normal file
1
test/bug/tint/749.spvasm.expected.hlsl
Normal file
@@ -0,0 +1 @@
|
||||
SKIP: TINT_UNIMPLEMENTED crbug.com/tint/726: module-scope private and workgroup variables not yet implemented
|
||||
1
test/bug/tint/749.spvasm.expected.msl
Normal file
1
test/bug/tint/749.spvasm.expected.msl
Normal file
@@ -0,0 +1 @@
|
||||
SKIP: TINT_UNIMPLEMENTED crbug.com/tint/726: module-scope private and workgroup variables not yet implemented
|
||||
5
test/bug/tint/749.spvasm.expected.spvasm
Normal file
5
test/bug/tint/749.spvasm.expected.spvasm
Normal 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
8
test/bug/tint/782.wgsl
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user