diff options
Diffstat (limited to 'tests/run-make-fulldeps/issues-41478-43796/Makefile')
-rw-r--r-- | tests/run-make-fulldeps/issues-41478-43796/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/run-make-fulldeps/issues-41478-43796/Makefile b/tests/run-make-fulldeps/issues-41478-43796/Makefile new file mode 100644 index 000000000..e451cb031 --- /dev/null +++ b/tests/run-make-fulldeps/issues-41478-43796/Makefile @@ -0,0 +1,8 @@ +include ../tools.mk + +all: + # Work in /tmp, because we need to create the `save-analysis-temp` folder. + cp a.rs $(TMPDIR)/ + cd $(TMPDIR) && $(RUSTC) -Zsave-analysis $(TMPDIR)/a.rs 2> $(TMPDIR)/stderr.txt || ( cat $(TMPDIR)/stderr.txt && exit 1 ) + [ ! -s $(TMPDIR)/stderr.txt ] || ( cat $(TMPDIR)/stderr.txt && exit 1 ) + [ -f $(TMPDIR)/save-analysis/liba.json ] || ( ls -la $(TMPDIR) && exit 1 ) |