Skip to content

Commit 7b95053

Browse files
Adjust the expected failure conditions for subgroup_operations (#8515)
1 parent 961be24 commit 7b95053

File tree

1 file changed

+8
-4
lines changed
  • tests/tests/wgpu-gpu/subgroup_operations

1 file changed

+8
-4
lines changed

tests/tests/wgpu-gpu/subgroup_operations/mod.rs

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,20 @@ static SUBGROUP_OPERATIONS: GpuTestConfiguration = GpuTestConfiguration::new()
2121
// are not matched against.
2222
.expect_fail(
2323
wgpu_test::FailureCase::molten_vk()
24-
// 14.3 doesn't fail test 29
24+
// 26.0 fails only test 28, and not on thread 0
25+
.panic("thread 1 failed tests: 28,\n")
26+
// 14.3 fails 27 and 28
2527
.panic("thread 0 failed tests: 27,\nthread 1 failed tests: 27, 28,\n")
26-
// Prior versions do.
28+
// Prior versions fail 27, 28, and 29
2729
.panic("thread 0 failed tests: 27, 29,\nthread 1 failed tests: 27, 28, 29,\n"),
2830
)
2931
.expect_fail(
3032
wgpu_test::FailureCase::backend(wgpu::Backends::METAL)
31-
// 14.3 doesn't fail test 29
33+
// 26.0 fails only test 28, and not on thread 0
34+
.panic("thread 1 failed tests: 28,\n")
35+
// 14.3 fails 27 and 28
3236
.panic("thread 0 failed tests: 27,\nthread 1 failed tests: 27, 28,\n")
33-
// Prior versions do.
37+
// Prior versions fail 27, 28, and 29
3438
.panic("thread 0 failed tests: 27, 29,\nthread 1 failed tests: 27, 28, 29,\n"),
3539
),
3640
)

0 commit comments

Comments
 (0)