File tree 4 files changed +24
-14
lines changed
4 files changed +24
-14
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ run-make/dump-mono-stats/Makefile
27
27
run-make/dylib-chain/Makefile
28
28
run-make/emit-path-unhashed/Makefile
29
29
run-make/emit-shared-files/Makefile
30
- run-make/emit-stack-sizes/Makefile
31
30
run-make/emit-to-stdout/Makefile
32
31
run-make/env-dep-info/Makefile
33
32
run-make/error-writing-dependencies/Makefile
@@ -156,7 +155,6 @@ run-make/redundant-libs/Makefile
156
155
run-make/relocation-model/Makefile
157
156
run-make/relro-levels/Makefile
158
157
run-make/remap-path-prefix-dwarf/Makefile
159
- run-make/remap-path-prefix/Makefile
160
158
run-make/reproducible-build-2/Makefile
161
159
run-make/reproducible-build/Makefile
162
160
run-make/return-non-c-like-enum-from-c/Makefile
Original file line number Diff line number Diff line change
1
+ #![ allow( internal_features) ]
1
2
#![ feature( rustc_attrs) ]
2
3
#![ deny( warnings) ]
3
4
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments