File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -685,14 +685,6 @@ fn run(cli: Cli) -> ExitCode {
685685 )
686686 } )
687687 }
688- SubtestOutcome :: Crash => receiver ( & mut |analysis| {
689- insert_in_test_set (
690- & mut analysis. tests_with_crashes ,
691- test_name,
692- expected,
693- outcome,
694- )
695- } ) ,
696688 SubtestOutcome :: Fail => receiver ( & mut |analysis| {
697689 insert_in_subtest_by_test_set (
698690 & mut analysis. subtests_with_failures_by_test ,
Original file line number Diff line number Diff line change @@ -1324,7 +1324,6 @@ pub enum SubtestOutcome {
13241324 Pass ,
13251325 Fail ,
13261326 Timeout ,
1327- Crash ,
13281327 NotRun ,
13291328}
13301329
@@ -1343,7 +1342,6 @@ impl Display for SubtestOutcome {
13431342 Self :: Pass => PASS ,
13441343 Self :: Fail => FAIL ,
13451344 Self :: Timeout => TIMEOUT ,
1346- Self :: Crash => CRASH ,
13471345 Self :: NotRun => NOTRUN ,
13481346 }
13491347 )
@@ -1360,7 +1358,6 @@ impl SubtestOutcome {
13601358 keyword ( PASS ) . to ( SubtestOutcome :: Pass ) ,
13611359 keyword ( FAIL ) . to ( SubtestOutcome :: Fail ) ,
13621360 keyword ( TIMEOUT ) . to ( SubtestOutcome :: Timeout ) ,
1363- keyword ( CRASH ) . to ( SubtestOutcome :: Crash ) ,
13641361 keyword ( NOTRUN ) . to ( SubtestOutcome :: NotRun ) ,
13651362 ) )
13661363 }
You can’t perform that action at this time.
0 commit comments