@@ -7,11 +7,12 @@ use crate::{
7
7
time:: { TimeThreshold , TestTimeOptions } ,
8
8
formatters:: PrettyFormatter ,
9
9
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)
11
14
// ShouldPanic, StaticTestName, TestDesc, TestDescAndFn, TestOpts, TestTimeOptions,
12
15
// TestType, TrFailedMsg, TrIgnored, TrOk,
13
- ShouldPanic , StaticTestName , TestDesc , TestDescAndFn , TestOpts ,
14
- TrIgnored , TrOk ,
15
16
} ,
16
17
} ;
17
18
use std:: sync:: mpsc:: channel;
@@ -104,7 +105,7 @@ pub fn ignored_tests_result_in_ignored() {
104
105
assert ! ( result == TrIgnored ) ;
105
106
}
106
107
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)
108
109
#[ test]
109
110
#[ cfg( not( target_os = "emscripten" ) ) ]
110
111
fn test_should_panic ( ) {
@@ -127,7 +128,7 @@ fn test_should_panic() {
127
128
assert ! ( result == TrOk ) ;
128
129
}
129
130
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)
131
132
#[ test]
132
133
#[ cfg( not( target_os = "emscripten" ) ) ]
133
134
fn test_should_panic_good_message ( ) {
@@ -150,7 +151,7 @@ fn test_should_panic_good_message() {
150
151
assert ! ( result == TrOk ) ;
151
152
}
152
153
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)
154
155
#[ test]
155
156
#[ cfg( not( target_os = "emscripten" ) ) ]
156
157
fn test_should_panic_bad_message ( ) {
@@ -176,7 +177,7 @@ fn test_should_panic_bad_message() {
176
177
assert ! ( result == TrFailedMsg ( format!( "{} '{}'" , failed_msg, expected) ) ) ;
177
178
}
178
179
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)
180
181
#[ test]
181
182
#[ cfg( not( target_os = "emscripten" ) ) ]
182
183
fn test_should_panic_but_succeeds ( ) {
0 commit comments