File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -396,6 +396,7 @@ pub fn foo(num: i32) -> u32 {
396
396
. build ( ) ;
397
397
398
398
foo. cargo ( "check" )
399
+ . arg ( "-v" ) // Show order of rustflags on failure
399
400
. masquerade_as_nightly_cargo ( & [ "lints" ] )
400
401
. run ( ) ;
401
402
}
@@ -428,7 +429,7 @@ pub fn foo(num: i32) -> u32 {
428
429
. build ( ) ;
429
430
430
431
foo. cargo ( "check" )
431
- . arg ( "-v" )
432
+ . arg ( "-v" ) // Show order of rustflags on failure
432
433
. env ( "RUSTFLAGS" , "-Aunsafe_code" )
433
434
. masquerade_as_nightly_cargo ( & [ "lints" ] )
434
435
. run ( ) ;
@@ -464,7 +465,7 @@ pub fn foo(num: i32) -> u32 {
464
465
. build ( ) ;
465
466
466
467
foo. cargo ( "check" )
467
- . arg ( "-v" )
468
+ . arg ( "-v" ) // Show order of rustflags on failure
468
469
. masquerade_as_nightly_cargo ( & [ "lints" , "profile-rustflags" ] )
469
470
. run ( ) ;
470
471
}
You can’t perform that action at this time.
0 commit comments