@@ -7,11 +7,12 @@ use crate::{
77 time:: { TimeThreshold , TestTimeOptions } ,
88 formatters:: PrettyFormatter ,
99 test:: {
10- filter_tests, parse_opts, run_test, DynTestFn , DynTestName , MetricMap , RunIgnored , RunStrategy ,
10+ filter_tests, parse_opts, run_test, DynTestFn , DynTestName , MetricMap ,
11+ RunIgnored , RunStrategy , ShouldPanic , StaticTestName , TestDesc ,
12+ TestDescAndFn , TestOpts , TrIgnored , TrOk ,
13+ // FIXME (introduced by #65251)
1114 // ShouldPanic, StaticTestName, TestDesc, TestDescAndFn, TestOpts, TestTimeOptions,
1215 // TestType, TrFailedMsg, TrIgnored, TrOk,
13- ShouldPanic , StaticTestName , TestDesc , TestDescAndFn , TestOpts ,
14- TrIgnored , TrOk ,
1516 } ,
1617} ;
1718use std:: sync:: mpsc:: channel;
@@ -104,7 +105,7 @@ pub fn ignored_tests_result_in_ignored() {
104105 assert ! ( result == TrIgnored ) ;
105106}
106107
107- // FIXME: Re-enable emscripten once it can catch panics again
108+ // FIXME: Re-enable emscripten once it can catch panics again (introduced by #65251)
108109#[ test]
109110#[ cfg( not( target_os = "emscripten" ) ) ]
110111fn test_should_panic ( ) {
@@ -127,7 +128,7 @@ fn test_should_panic() {
127128 assert ! ( result == TrOk ) ;
128129}
129130
130- // FIXME: Re-enable emscripten once it can catch panics again
131+ // FIXME: Re-enable emscripten once it can catch panics again (introduced by #65251)
131132#[ test]
132133#[ cfg( not( target_os = "emscripten" ) ) ]
133134fn test_should_panic_good_message ( ) {
@@ -150,7 +151,7 @@ fn test_should_panic_good_message() {
150151 assert ! ( result == TrOk ) ;
151152}
152153
153- // FIXME: Re-enable emscripten once it can catch panics again
154+ // FIXME: Re-enable emscripten once it can catch panics again (introduced by #65251)
154155#[ test]
155156#[ cfg( not( target_os = "emscripten" ) ) ]
156157fn test_should_panic_bad_message ( ) {
@@ -176,7 +177,7 @@ fn test_should_panic_bad_message() {
176177 assert ! ( result == TrFailedMsg ( format!( "{} '{}'" , failed_msg, expected) ) ) ;
177178}
178179
179- // FIXME: Re-enable emscripten once it can catch panics again
180+ // FIXME: Re-enable emscripten once it can catch panics again (introduced by #65251)
180181#[ test]
181182#[ cfg( not( target_os = "emscripten" ) ) ]
182183fn test_should_panic_but_succeeds ( ) {
0 commit comments