We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f78eed commit 415a9a2Copy full SHA for 415a9a2
src/test/run-make/dep-graph/Makefile
@@ -0,0 +1,12 @@
1
+-include ../../run-make-fulldeps/tools.mk
2
+
3
+# ignore-cross-compile
4
5
+# Just verify that we successfully run and produce dep graphs when requested.
6
7
+all:
8
+ RUST_DEP_GRAPH=$(TMPDIR)/dep-graph $(RUSTC) \
9
+ -Cincremental=$(TMPDIR)/incr \
10
+ -Zquery-dep-graph -Zdump-dep-graph foo.rs
11
+ test -f $(TMPDIR)/dep-graph.txt
12
+ test -f $(TMPDIR)/dep-graph.dot
src/test/run-make/dep-graph/foo.rs
@@ -0,0 +1 @@
+fn main() {}
0 commit comments