Skip to content

Commit 0915629

Browse files
authored
Rollup merge of #125146 - Oneirical:panic-impl, r=jieyouxu
Migrate `run-make/panic-impl-transitive` to `rmake` Part of #121876 and the associated [Google Summer of Code project](https://blog.rust-lang.org/2024/05/01/gsoc-2024-selected-projects.html). The test itself is quite simple, but the "handle panics by entering infinite loop" part is strange.
2 parents 80f991e + a7484d2 commit 0915629

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ run-make/output-with-hyphens/Makefile
190190
run-make/override-aliased-flags/Makefile
191191
run-make/overwrite-input/Makefile
192192
run-make/panic-abort-eh_frame/Makefile
193-
run-make/panic-impl-transitive/Makefile
194193
run-make/pass-linker-flags-flavor/Makefile
195194
run-make/pass-linker-flags-from-dep/Makefile
196195
run-make/pass-linker-flags/Makefile

tests/run-make/panic-impl-transitive/Makefile

-7
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// In Rust programs where the standard library is unavailable (#![no_std]), we may be interested
2+
// in customizing how panics are handled. Here, the provider specifies that panics should be handled
3+
// by entering an infinite loop. This test checks that this panic implementation can be transitively
4+
// provided by an external crate.
5+
// --emit=llvm-ir is used to avoid running the linker, as linking will fail due to the lack of main
6+
// function in the crate.
7+
// See https://github.com/rust-lang/rust/pull/50338
8+
9+
use run_make_support::{rustc, tmp_dir};
10+
11+
fn main() {
12+
rustc().input("panic-impl-provider.rs").run();
13+
rustc()
14+
.input("panic-impl-consumer.rs")
15+
.panic("abort")
16+
.emit("llvm-ir")
17+
.library_search_path(tmp_dir())
18+
.run();
19+
}

0 commit comments

Comments
 (0)