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