This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +15
-8
lines changed Expand file tree Collapse file tree 7 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ run-make/forced-unwind-terminate-pof/Makefile
5757run-make/foreign-double-unwind/Makefile
5858run-make/foreign-exceptions/Makefile
5959run-make/foreign-rust-exceptions/Makefile
60- run-make/include_bytes_deps/Makefile
6160run-make/incr-add-rust-src-component/Makefile
6261run-make/incr-foreign-head-span/Makefile
6362run-make/inline-always-many-cgu/Makefile
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1+ // include_bytes! and include_str! in `main.rs`
2+ // should register the included file as of #24423,
3+ // and this test checks that this is still the case.
4+ // See https://github.com/rust-lang/rust/pull/24423
5+
6+ //FIXME(Oneirical): check if works without ignore freebsd
7+
8+ use run_make_support:: { invalid_utf8_contains, rustc} ;
9+
10+ fn main ( ) {
11+ rustc ( ) . emit ( "dep-info" ) . input ( "main.rs" ) . run ( ) ;
12+ invalid_utf8_contains ( "main.d" , "input.txt" ) ;
13+ invalid_utf8_contains ( "main.d" , "input.bin" ) ;
14+ invalid_utf8_contains ( "main.d" , "input.md" ) ;
15+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments