File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- //! Include a file by concating the verbatim path using `/` instead of `\`
1+ //! Include a file by concatenating the verbatim path using `/` instead of `\`
22
33include ! ( concat!( env!( "VERBATIM_DIR" ) , "/include/include.txt" ) ) ;
44fn main ( ) {
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ fn main() {
99 let mut path_ir = PathBuf :: new ( ) ;
1010 run_in_tmpdir ( || {
1111 let p = cwd ( ) ;
12- path_bc = p. join ( "nonexistant_dir_bc " ) ;
13- path_ir = p. join ( "nonexistant_dir_ir " ) ;
12+ path_bc = p. join ( "nonexistent_dir_bc " ) ;
13+ path_ir = p. join ( "nonexistent_dir_ir " ) ;
1414 rustc ( ) . input ( "-" ) . stdin_buf ( "fn main() {}" ) . out_dir ( & path_bc) . emit ( "llvm-bc" ) . run ( ) ;
1515 rustc ( ) . input ( "-" ) . stdin_buf ( "fn main() {}" ) . out_dir ( & path_ir) . emit ( "llvm-ir" ) . run ( ) ;
1616 assert ! ( path_bc. exists( ) ) ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ fn main() {
4848 let default = & target_spec[ "crt-static-default" ] ;
4949
5050 // If the value is `null`, then the default to dynamically link from
51- // musl_base was not overriden .
51+ // musl_base was not overridden .
5252 if default. is_null ( ) {
5353 continue ;
5454 }
Original file line number Diff line number Diff line change 1- // The rlib produced by a no_builtins crate should be explicitely linked
1+ // The rlib produced by a no_builtins crate should be explicitly linked
22// during compilation, and as a result be present in the linker arguments.
33// See the comments inside this file for more details.
44// See https://github.com/rust-lang/rust/pull/35637
Original file line number Diff line number Diff line change 11// Dynamic libraries on Rust used to export a very high amount of symbols,
22// going as far as filling the output with mangled names and generic function
33// names. After the rework of #38117, this test checks that no mangled Rust symbols
4- // are exported, and that generics are only shown if explicitely requested.
4+ // are exported, and that generics are only shown if explicitly requested.
55// See https://github.com/rust-lang/rust/issues/37530
66
77use run_make_support:: object:: read:: Object ;
You can’t perform that action at this time.
0 commit comments