File tree Expand file tree Collapse file tree 4 files changed +9
-26
lines changed Expand file tree Collapse file tree 4 files changed +9
-26
lines changed Original file line number Diff line number Diff line change @@ -5602,17 +5602,14 @@ test check_target ... ok
5602
5602
"# ] ] )
5603
5603
. run ( ) ;
5604
5604
5605
- // Remove check once 1.88 is stable
5606
- if cargo_test_support:: is_nightly ( ) {
5607
- p. cargo ( "test --workspace --doc --target" )
5608
- . arg ( & target)
5609
- . with_stdout_data ( str![ [ r#"
5605
+ p. cargo ( "test --workspace --doc --target" )
5606
+ . arg ( & target)
5607
+ . with_stdout_data ( str![ [ r#"
5610
5608
...
5611
5609
test foo/src/lib.rs - (line 2) ... ok
5612
5610
...
5613
5611
"# ] ] )
5614
- . run ( ) ;
5615
- }
5612
+ . run ( ) ;
5616
5613
}
5617
5614
5618
5615
#[ cargo_test]
Original file line number Diff line number Diff line change @@ -1136,10 +1136,7 @@ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; fini
1136
1136
. run ( ) ;
1137
1137
}
1138
1138
1139
- #[ cargo_test(
1140
- nightly,
1141
- reason = "waiting for 1.88 to be stable for doctest xcompile flags"
1142
- ) ]
1139
+ #[ cargo_test]
1143
1140
fn doctest_xcompile_linker ( ) {
1144
1141
if cross_compile_disabled ( ) {
1145
1142
return ;
Original file line number Diff line number Diff line change @@ -1987,11 +1987,9 @@ fn compatible_with_older_cargo() {
1987
1987
middle = "1.0"
1988
1988
"# ,
1989
1989
) ;
1990
- // TODO: Remove -Zgc after 1.82 is stabilized.
1991
1990
rustup_cargo ( )
1992
- . args ( & [ "+stable" , "check" , "-Zgc" ] )
1991
+ . args ( & [ "+stable" , "check" ] )
1993
1992
. cwd ( p. root ( ) )
1994
- . masquerade_as_nightly_cargo ( & [ "gc" ] )
1995
1993
. env ( "__CARGO_TEST_LAST_USE_NOW" , months_ago_unix ( 2 ) )
1996
1994
. run ( ) ;
1997
1995
assert_eq ! ( get_registry_names( "src" ) , [ "middle-1.0.0" , "new-1.0.0" ] ) ;
Original file line number Diff line number Diff line change @@ -4742,10 +4742,7 @@ fn test_dep_with_dev() {
4742
4742
. run ( ) ;
4743
4743
}
4744
4744
4745
- #[ cargo_test(
4746
- nightly,
4747
- reason = "waiting for 1.88 to be stable for doctest xcompile flags"
4748
- ) ]
4745
+ #[ cargo_test]
4749
4746
fn cargo_test_doctest_xcompile_ignores ( ) {
4750
4747
// Check ignore-TARGET syntax.
4751
4748
let p = project ( )
@@ -4782,10 +4779,7 @@ test result: ok. 0 passed; 0 failed; 1 ignored; 0 measured; 0 filtered out; fini
4782
4779
. run ( ) ;
4783
4780
}
4784
4781
4785
- #[ cargo_test(
4786
- nightly,
4787
- reason = "waiting for 1.88 to be stable for doctest xcompile flags"
4788
- ) ]
4782
+ #[ cargo_test]
4789
4783
fn cargo_test_doctest_xcompile_runner ( ) {
4790
4784
if !cross_compile_can_run_on_host ( ) {
4791
4785
return ;
@@ -4868,10 +4862,7 @@ this is a runner
4868
4862
. run ( ) ;
4869
4863
}
4870
4864
4871
- #[ cargo_test(
4872
- nightly,
4873
- reason = "waiting for 1.88 to be stable for doctest xcompile flags"
4874
- ) ]
4865
+ #[ cargo_test]
4875
4866
fn cargo_test_doctest_xcompile_no_runner ( ) {
4876
4867
if !cross_compile_can_run_on_host ( ) {
4877
4868
return ;
You can’t perform that action at this time.
0 commit comments