File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/run-make/linker-warning Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ fn main() {
2525 let out = run_rustc ( ) . link_arg ( "run_make_error" ) . verbose ( ) . run_fail ( ) ;
2626 out. assert_stderr_contains_regex ( "fake-linker.*run_make_error" )
2727 . assert_stderr_not_contains ( "object files omitted" )
28- . assert_stderr_contains ( "PATH= \" ")
28+ . assert_stderr_contains ( r".rcgu.o ")
2929 . assert_stderr_contains_regex ( r"lib(/|\\\\)libstd" ) ;
3030
3131 let out = run_rustc ( ) . link_arg ( "run_make_error" ) . run_fail ( ) ;
3232 out. assert_stderr_contains ( "fake-linker" )
3333 . assert_stderr_contains ( "object files omitted" )
3434 . assert_stderr_contains_regex ( r"\{" )
35- . assert_stderr_not_contains ( "PATH= \" ")
35+ . assert_stderr_not_contains ( r".rcgu.o ")
3636 . assert_stderr_not_contains_regex ( r"lib(/|\\\\)libstd" ) ;
3737
3838 // FIXME: we should have a version of this for mac and windows
You can’t perform that action at this time.
0 commit comments