Skip to content

Commit 2931afd

Browse files
committed
rewrite emit-stack-sizes to rmake
1 parent 2435cd3 commit 2931afd

File tree

4 files changed

+24
-14
lines changed

4 files changed

+24
-14
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ run-make/dump-mono-stats/Makefile
2727
run-make/dylib-chain/Makefile
2828
run-make/emit-path-unhashed/Makefile
2929
run-make/emit-shared-files/Makefile
30-
run-make/emit-stack-sizes/Makefile
3130
run-make/emit-to-stdout/Makefile
3231
run-make/env-dep-info/Makefile
3332
run-make/error-writing-dependencies/Makefile
@@ -156,7 +155,6 @@ run-make/redundant-libs/Makefile
156155
run-make/relocation-model/Makefile
157156
run-make/relro-levels/Makefile
158157
run-make/remap-path-prefix-dwarf/Makefile
159-
run-make/remap-path-prefix/Makefile
160158
run-make/reproducible-build-2/Makefile
161159
run-make/reproducible-build/Makefile
162160
run-make/return-non-c-like-enum-from-c/Makefile

tests/run-make/debug-assertions/debug.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(internal_features)]
12
#![feature(rustc_attrs)]
23
#![deny(warnings)]
34

tests/run-make/emit-stack-sizes/Makefile

-12
This file was deleted.
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// Running rustc with the -Z emit-stack-sizes
2+
// flag enables diagnostics to seek stack overflows
3+
// at compile time. This test compiles a rust file
4+
// with this flag, then checks that the output object
5+
// file contains the section "stack_sizes", where
6+
// this diagnostics information should be located.
7+
// See https://github.com/rust-lang/rust/pull/51946
8+
// FIXME(Oneirical): temporarily disabled ignore flags for test
9+
// here is ignore-windows
10+
// and ignore-apple
11+
// Supposedly, this feature only works when the output object format is ELF so we ignore
12+
// Apple and Windows
13+
14+
use run_make_support::{llvm_readobj, rustc};
15+
16+
fn main() {
17+
rustc().opt_level("3").arg("-Zemit-stack-sizes").emit("obj").input("foo.rs").run();
18+
llvm_readobj()
19+
.arg("--section-headers")
20+
.input("foo.o")
21+
.run()
22+
.assert_stdout_contains(".stack_sizes");
23+
}

0 commit comments

Comments
 (0)