Skip to content

Commit 90ef814

Browse files
committed
Fully skip all rpi hello-compute tests due to non-determinism
1 parent bd1c153 commit 90ef814

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

wgpu/examples/hello-compute/tests.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use common::{initialize_test, TestParameters};
99
#[test]
1010
fn test_compute_1() {
1111
initialize_test(
12-
TestParameters::default().specific_failure(None, None, Some("V3D"), false),
12+
TestParameters::default().specific_failure(None, None, Some("V3D"), true),
1313
|ctx| {
1414
let input = &[1, 2, 3, 4];
1515

@@ -26,7 +26,7 @@ fn test_compute_1() {
2626
#[test]
2727
fn test_compute_2() {
2828
initialize_test(
29-
TestParameters::default().specific_failure(None, None, Some("V3D"), false),
29+
TestParameters::default().specific_failure(None, None, Some("V3D"), true),
3030
|ctx| {
3131
let input = &[5, 23, 10, 9];
3232

@@ -43,7 +43,7 @@ fn test_compute_2() {
4343
#[test]
4444
fn test_compute_overflow() {
4545
initialize_test(
46-
TestParameters::default().specific_failure(None, None, Some("V3D"), false),
46+
TestParameters::default().specific_failure(None, None, Some("V3D"), true),
4747
|ctx| {
4848
let input = &[77031, 837799, 8400511, 63728127];
4949
pollster::block_on(assert_execute_gpu(
@@ -61,7 +61,7 @@ fn test_multithreaded_compute() {
6161
initialize_test(
6262
TestParameters::default()
6363
.backend_failure(wgpu::Backends::GL)
64-
.specific_failure(Some(wgpu::Backends::VULKAN), None, Some("V3D"), false),
64+
.specific_failure(None, None, Some("V3D"), true),
6565
|ctx| {
6666
use std::{sync::mpsc, thread, time::Duration};
6767

0 commit comments

Comments
 (0)