File tree 3 files changed +11
-10
lines changed
tests/run-make/debugger-visualizer-dep-info
3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ run-make/cross-lang-lto-pgo-smoketest/Makefile
23
23
run-make/cross-lang-lto-upstream-rlibs/Makefile
24
24
run-make/cross-lang-lto/Makefile
25
25
run-make/debug-assertions/Makefile
26
- run-make/debugger-visualizer-dep-info/Makefile
27
26
run-make/dep-info-doesnt-run-much/Makefile
28
27
run-make/dep-info-spaces/Makefile
29
28
run-make/dep-info/Makefile
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ // This test checks that files referenced via #[debugger_visualizer] are
2
+ // included in `--emit dep-info` output.
3
+ // See https://github.com/rust-lang/rust/pull/111641
4
+
5
+ use run_make_support:: { invalid_utf8_contains, rustc} ;
6
+
7
+ fn main ( ) {
8
+ rustc ( ) . emit ( "dep-info" ) . input ( "main.rs" ) . run ( ) ;
9
+ invalid_utf8_contains ( "main.d" , "foo.py" ) ;
10
+ invalid_utf8_contains ( "main.d" , "my_visualizers/bar.natvis" ) ;
11
+ }
You can’t perform that action at this time.
0 commit comments