File tree 3 files changed +18
-13
lines changed
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
25
25
run-make/cross-lang-lto/Makefile
26
26
run-make/debug-assertions/Makefile
27
27
run-make/debugger-visualizer-dep-info/Makefile
28
- run-make/dep-graph/Makefile
29
28
run-make/dep-info-doesnt-run-much/Makefile
30
29
run-make/dep-info-spaces/Makefile
31
30
run-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:: { path, rustc} ;
6
+
7
+ fn main ( ) {
8
+ rustc ( )
9
+ . input ( "foo.rs" )
10
+ . incremental ( path ( "incr" ) )
11
+ . arg ( "-Zquery-dep-graph" )
12
+ . arg ( "-Zdump-dep-graph" )
13
+ . env ( "RUST_DEP_GRAPH" , path ( "dep-graph" ) )
14
+ . run ( ) ;
15
+
16
+ assert ! ( path( "dep-graph.txt" ) . is_file( ) ) ;
17
+ assert ! ( path( "dep-graph.dot" ) . is_file( ) ) ;
18
+ }
You can’t perform that action at this time.
0 commit comments