Adjust the expected failure conditions for subgroup_operations (#8515)

This commit is contained in:
Andy Leiserson 2025-11-12 13:14:23 -08:00 committed by GitHub
parent 961be24246
commit 7b95053f5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,16 +21,20 @@ static SUBGROUP_OPERATIONS: GpuTestConfiguration = GpuTestConfiguration::new()
// are not matched against.
.expect_fail(
wgpu_test::FailureCase::molten_vk()
// 14.3 doesn't fail test 29
// 26.0 fails only test 28, and not on thread 0
.panic("thread 1 failed tests: 28,\n")
// 14.3 fails 27 and 28
.panic("thread 0 failed tests: 27,\nthread 1 failed tests: 27, 28,\n")
// Prior versions do.
// Prior versions fail 27, 28, and 29
.panic("thread 0 failed tests: 27, 29,\nthread 1 failed tests: 27, 28, 29,\n"),
)
.expect_fail(
wgpu_test::FailureCase::backend(wgpu::Backends::METAL)
// 14.3 doesn't fail test 29
// 26.0 fails only test 28, and not on thread 0
.panic("thread 1 failed tests: 28,\n")
// 14.3 fails 27 and 28
.panic("thread 0 failed tests: 27,\nthread 1 failed tests: 27, 28,\n")
// Prior versions do.
// Prior versions fail 27, 28, and 29
.panic("thread 0 failed tests: 27, 29,\nthread 1 failed tests: 27, 28, 29,\n"),
),
)