@@ -31,7 +31,7 @@ macro_rules! x {
31
31
} } ;
32
32
}
33
33
34
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
34
+ #[ cargo_test]
35
35
fn features ( ) {
36
36
let p = project ( )
37
37
. file (
@@ -57,7 +57,7 @@ fn features() {
57
57
. run ( ) ;
58
58
}
59
59
60
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
60
+ #[ cargo_test]
61
61
fn features_with_deps ( ) {
62
62
let p = project ( )
63
63
. file (
@@ -87,7 +87,7 @@ fn features_with_deps() {
87
87
. run ( ) ;
88
88
}
89
89
90
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
90
+ #[ cargo_test]
91
91
fn features_with_opt_deps ( ) {
92
92
let p = project ( )
93
93
. file (
@@ -118,7 +118,7 @@ fn features_with_opt_deps() {
118
118
. run ( ) ;
119
119
}
120
120
121
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
121
+ #[ cargo_test]
122
122
fn features_with_namespaced_features ( ) {
123
123
let p = project ( )
124
124
. file (
@@ -148,7 +148,7 @@ fn features_with_namespaced_features() {
148
148
. run ( ) ;
149
149
}
150
150
151
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
151
+ #[ cargo_test]
152
152
fn features_fingerprint ( ) {
153
153
let p = project ( )
154
154
. file (
@@ -218,7 +218,7 @@ fn features_fingerprint() {
218
218
. run ( ) ;
219
219
}
220
220
221
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
221
+ #[ cargo_test]
222
222
fn well_known_names_values ( ) {
223
223
let p = project ( )
224
224
. file ( "Cargo.toml" , & basic_manifest ( "foo" , "0.1.0" ) )
@@ -231,7 +231,7 @@ fn well_known_names_values() {
231
231
. run ( ) ;
232
232
}
233
233
234
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
234
+ #[ cargo_test]
235
235
fn features_test ( ) {
236
236
let p = project ( )
237
237
. file (
@@ -256,7 +256,7 @@ fn features_test() {
256
256
. run ( ) ;
257
257
}
258
258
259
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
259
+ #[ cargo_test]
260
260
fn features_doctest ( ) {
261
261
let p = project ( )
262
262
. file (
@@ -285,7 +285,7 @@ fn features_doctest() {
285
285
. run ( ) ;
286
286
}
287
287
288
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
288
+ #[ cargo_test]
289
289
fn well_known_names_values_test ( ) {
290
290
let p = project ( )
291
291
. file ( "Cargo.toml" , & basic_manifest ( "foo" , "0.1.0" ) )
@@ -298,7 +298,7 @@ fn well_known_names_values_test() {
298
298
. run ( ) ;
299
299
}
300
300
301
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
301
+ #[ cargo_test]
302
302
fn well_known_names_values_doctest ( ) {
303
303
let p = project ( )
304
304
. file ( "Cargo.toml" , & basic_manifest ( "foo" , "0.1.0" ) )
@@ -313,7 +313,7 @@ fn well_known_names_values_doctest() {
313
313
. run ( ) ;
314
314
}
315
315
316
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
316
+ #[ cargo_test]
317
317
fn features_doc ( ) {
318
318
let p = project ( )
319
319
. file (
@@ -340,7 +340,7 @@ fn features_doc() {
340
340
. run ( ) ;
341
341
}
342
342
343
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
343
+ #[ cargo_test]
344
344
fn build_script_feedback ( ) {
345
345
let p = project ( )
346
346
. file (
@@ -368,7 +368,7 @@ fn build_script_feedback() {
368
368
. run ( ) ;
369
369
}
370
370
371
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
371
+ #[ cargo_test]
372
372
fn build_script_doc ( ) {
373
373
let p = project ( )
374
374
. file (
@@ -406,7 +406,7 @@ fn build_script_doc() {
406
406
. run ( ) ;
407
407
}
408
408
409
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
409
+ #[ cargo_test]
410
410
fn build_script_override ( ) {
411
411
let target = cargo_test_support:: rustc_host ( ) ;
412
412
@@ -444,7 +444,7 @@ fn build_script_override() {
444
444
. run ( ) ;
445
445
}
446
446
447
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
447
+ #[ cargo_test]
448
448
fn build_script_test ( ) {
449
449
let p = project ( )
450
450
. file (
@@ -499,7 +499,7 @@ fn build_script_test() {
499
499
. run ( ) ;
500
500
}
501
501
502
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
502
+ #[ cargo_test]
503
503
fn config_simple ( ) {
504
504
let p = project ( )
505
505
. file (
@@ -524,7 +524,7 @@ fn config_simple() {
524
524
. run ( ) ;
525
525
}
526
526
527
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
527
+ #[ cargo_test]
528
528
fn config_workspace ( ) {
529
529
let p = project ( )
530
530
. file (
@@ -558,7 +558,7 @@ fn config_workspace() {
558
558
. run ( ) ;
559
559
}
560
560
561
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
561
+ #[ cargo_test]
562
562
fn config_workspace_not_inherited ( ) {
563
563
let p = project ( )
564
564
. file (
@@ -589,7 +589,7 @@ fn config_workspace_not_inherited() {
589
589
. run ( ) ;
590
590
}
591
591
592
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
592
+ #[ cargo_test]
593
593
fn config_invalid_position ( ) {
594
594
let p = project ( )
595
595
. file (
@@ -613,7 +613,7 @@ fn config_invalid_position() {
613
613
. run ( ) ;
614
614
}
615
615
616
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
616
+ #[ cargo_test]
617
617
fn config_invalid_empty ( ) {
618
618
let p = project ( )
619
619
. file (
@@ -637,7 +637,7 @@ fn config_invalid_empty() {
637
637
. run ( ) ;
638
638
}
639
639
640
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
640
+ #[ cargo_test]
641
641
fn config_invalid_not_list ( ) {
642
642
let p = project ( )
643
643
. file (
@@ -663,7 +663,7 @@ fn config_invalid_not_list() {
663
663
. run ( ) ;
664
664
}
665
665
666
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
666
+ #[ cargo_test]
667
667
fn config_invalid_not_list_string ( ) {
668
668
let p = project ( )
669
669
. file (
@@ -689,7 +689,7 @@ fn config_invalid_not_list_string() {
689
689
. run ( ) ;
690
690
}
691
691
692
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
692
+ #[ cargo_test]
693
693
fn config_and_features ( ) {
694
694
let p = project ( )
695
695
. file (
@@ -718,7 +718,7 @@ fn config_and_features() {
718
718
. run ( ) ;
719
719
}
720
720
721
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
721
+ #[ cargo_test]
722
722
fn config_with_cargo_doc ( ) {
723
723
let p = project ( )
724
724
. file (
@@ -741,7 +741,7 @@ fn config_with_cargo_doc() {
741
741
. run ( ) ;
742
742
}
743
743
744
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
744
+ #[ cargo_test]
745
745
fn config_with_cargo_test ( ) {
746
746
let p = project ( )
747
747
. file (
@@ -764,7 +764,7 @@ fn config_with_cargo_test() {
764
764
. run ( ) ;
765
765
}
766
766
767
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
767
+ #[ cargo_test]
768
768
fn config_and_build_script ( ) {
769
769
let p = project ( )
770
770
. file (
@@ -793,7 +793,7 @@ fn config_and_build_script() {
793
793
. run ( ) ;
794
794
}
795
795
796
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
796
+ #[ cargo_test]
797
797
fn config_features_and_build_script ( ) {
798
798
let p = project ( )
799
799
. file (
@@ -828,7 +828,7 @@ fn config_features_and_build_script() {
828
828
. run ( ) ;
829
829
}
830
830
831
- #[ cargo_test( >= 1.79 , reason = "--check-cfg was stabilized in Rust 1.79" ) ]
831
+ #[ cargo_test]
832
832
fn config_fingerprint ( ) {
833
833
let p = project ( )
834
834
. file (
0 commit comments