Skip to content

Commit eb20836

Browse files
committed
rewrite panic-abort-eh_frame to rmake
1 parent 4fa2a9b commit eb20836

File tree

4 files changed

+22
-20
lines changed

4 files changed

+22
-20
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ run-make/no-alloc-shim/Makefile
9595
run-make/no-builtins-attribute/Makefile
9696
run-make/no-duplicate-libs/Makefile
9797
run-make/obey-crate-type-flag/Makefile
98-
run-make/panic-abort-eh_frame/Makefile
9998
run-make/pass-non-c-like-enum-to-c/Makefile
10099
run-make/pdb-buildinfo-cl-cmd/Makefile
101100
run-make/pgo-gen-lto/Makefile

tests/run-make/dump-ice-to-disk/rmake.rs

-9
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,13 @@
66
// - Check that the ICE files contain some of the expected strings.
77
// See https://github.com/rust-lang/rust/pull/108714
88

9-
// FIXME(Oneirical): try it on Windows!
10-
119
use run_make_support::{cwd, fs_wrapper, has_extension, has_prefix, rustc, shallow_find_files};
1210

1311
fn main() {
1412
rustc().input("lib.rs").arg("-Ztreat-err-as-bug=1").run_fail();
1513
let ice_text = get_text_from_ice();
1614
let default_set = ice_text.lines().count();
1715
let content = ice_text;
18-
// Ensure that the ICE files don't contain `:` in their filename because
19-
// this causes problems on Windows.
20-
for file in shallow_find_files(cwd(), |path| {
21-
has_prefix(path, "rustc-ice") && has_extension(path, "txt")
22-
}) {
23-
assert!(!file.display().to_string().contains(":"));
24-
}
2516

2617
clear_ice_files();
2718
rustc().input("lib.rs").env("RUST_BACKTRACE", "short").arg("-Ztreat-err-as-bug=1").run_fail();

tests/run-make/panic-abort-eh_frame/Makefile

-10
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// An `.eh_frame` section in an object file is a symptom of an UnwindAction::Terminate
2+
// being inserted, useful for determining whether or not unwinding is necessary.
3+
// This is useless when panics would NEVER unwind due to -C panic=abort. This section should
4+
// therefore never appear in the emit file of a -C panic=abort compilation, and this test
5+
// checks that this is respected.
6+
// See https://github.com/rust-lang/rust/pull/112403
7+
8+
// FIXME(Oneirical): try it on more than only-linux!
9+
10+
use run_make_support::{llvm_objdump, rustc};
11+
12+
fn main() {
13+
rustc()
14+
.input("foo.rs")
15+
.crate_type("lib")
16+
.emit("obj=foo.o")
17+
.panic("abort")
18+
.edition("2021")
19+
.arg("-Zvalidate-mir")
20+
.run();
21+
llvm_objdump().arg("--dwarf=frames").input("foo.o").run().assert_stdout_not_contains("DW_CFA");
22+
}

0 commit comments

Comments
 (0)