Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions moz-webgpu-cts/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -685,14 +685,6 @@ fn run(cli: Cli) -> ExitCode {
)
})
}
SubtestOutcome::Crash => receiver(&mut |analysis| {
insert_in_test_set(
&mut analysis.tests_with_crashes,
test_name,
expected,
outcome,
)
}),
SubtestOutcome::Fail => receiver(&mut |analysis| {
insert_in_subtest_by_test_set(
&mut analysis.subtests_with_failures_by_test,
Expand Down
3 changes: 0 additions & 3 deletions moz-webgpu-cts/src/wpt/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,6 @@ pub enum SubtestOutcome {
Pass,
Fail,
Timeout,
Crash,
NotRun,
}

Expand All @@ -1343,7 +1342,6 @@ impl Display for SubtestOutcome {
Self::Pass => PASS,
Self::Fail => FAIL,
Self::Timeout => TIMEOUT,
Self::Crash => CRASH,
Self::NotRun => NOTRUN,
}
)
Expand All @@ -1360,7 +1358,6 @@ impl SubtestOutcome {
keyword(PASS).to(SubtestOutcome::Pass),
keyword(FAIL).to(SubtestOutcome::Fail),
keyword(TIMEOUT).to(SubtestOutcome::Timeout),
keyword(CRASH).to(SubtestOutcome::Crash),
keyword(NOTRUN).to(SubtestOutcome::NotRun),
))
}
Expand Down
Loading