File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed
tests/run-make/debugger-visualizer-dep-info Expand file tree Collapse file tree 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
2323run-make/cross-lang-lto-upstream-rlibs/Makefile
2424run-make/cross-lang-lto/Makefile
2525run-make/debug-assertions/Makefile
26- run-make/debugger-visualizer-dep-info/Makefile
2726run-make/dep-info-doesnt-run-much/Makefile
2827run-make/dep-info-spaces/Makefile
2928run-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