File tree Expand file tree Collapse file tree 3 files changed +18
-13
lines changed Expand file tree Collapse file tree 3 files changed +18
-13
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ run-make/cross-lang-lto-upstream-rlibs/Makefile
2525run-make/cross-lang-lto/Makefile
2626run-make/debug-assertions/Makefile
2727run-make/debugger-visualizer-dep-info/Makefile
28- run-make/dep-graph/Makefile
2928run-make/dep-info-doesnt-run-much/Makefile
3029run-make/dep-info-spaces/Makefile
3130run-make/dep-info/Makefile
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ // Just verify that we successfully run and produce dep graphs when requested.
2+
3+ //@ ignore-cross-compile
4+
5+ use run_make_support:: { cwd, rustc} ;
6+
7+ fn main ( ) {
8+ rustc ( )
9+ . input ( "foo.rs" )
10+ . incremental ( cwd ( ) . join ( "incr" ) )
11+ . arg ( "-Zquery-dep-graph" )
12+ . arg ( "-Zdump-dep-graph" )
13+ . env ( "RUST_DEP_GRAPH" , cwd ( ) . join ( "dep-graph" ) )
14+ . run ( ) ;
15+
16+ assert ! ( cwd( ) . join( "dep-graph.txt" ) . is_file( ) ) ;
17+ assert ! ( cwd( ) . join( "dep-graph.dot" ) . is_file( ) ) ;
18+ }
You can’t perform that action at this time.
0 commit comments