File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,18 +27,18 @@ fn output(cmd: &mut Command) -> (String, ExitStatus) {
27
27
}
28
28
29
29
#[ test]
30
- fn t1_next ( ) {
30
+ fn t1 ( ) {
31
31
// t1 must run to completion without any errors.
32
- let ( output, status) = output ( & mut cmd ( "t1-next " ) ) ;
32
+ let ( output, status) = output ( & mut cmd ( "t1" ) ) ;
33
33
assert ! ( status. success( ) , "output: {output}" ) ;
34
34
assert ! ( !output. contains( "bad " ) , "{output}" ) ;
35
35
eprintln ! ( "output: {output}" ) ;
36
36
}
37
37
38
38
#[ test]
39
- fn t2_next ( ) {
39
+ fn t2 ( ) {
40
40
// t2 must fail to run to completion, and only have the errors we expect it to have.
41
- let ( output, status) = output ( & mut cmd ( "t2-next " ) ) ;
41
+ let ( output, status) = output ( & mut cmd ( "t2" ) ) ;
42
42
assert ! ( !status. success( ) , "output: {output}" ) ;
43
43
44
44
// FIXME(ctest): Errors currently commented out are not tested.
Original file line number Diff line number Diff line change @@ -3513,7 +3513,7 @@ fn test_neutrino(target: &str) {
3513
3513
)
3514
3514
} ) ;
3515
3515
3516
- cfg. skip_static ( move |name| ( name == "__dso_handle" ) ) ;
3516
+ cfg. skip_static ( move |name| name == "__dso_handle" ) ;
3517
3517
3518
3518
cfg. generate ( src_hotfix_dir ( ) . join ( "lib.rs" ) , "main.rs" ) ;
3519
3519
}
You can’t perform that action at this time.
0 commit comments