]> git.lizzy.rs Git - rust.git/blob - tests/run-make/incremental-session-fail/Makefile
Rollup merge of #106321 - compiler-errors:delayed-bug-backtrace, r=Nilstrieb
[rust.git] / tests / run-make / incremental-session-fail / Makefile
1 include ../../run-make-fulldeps/tools.mk
2
3 SESSION_DIR := $(TMPDIR)/session
4 OUTPUT_FILE := $(TMPDIR)/build-output
5
6 all:
7         echo $(TMPDIR)
8         # Make it so that rustc will fail to create a session directory.
9         touch $(SESSION_DIR)
10         # Check exit code is 1 for an error, and not 101 for ICE.
11         $(RUSTC) foo.rs --crate-type=rlib -C incremental=$(SESSION_DIR) > $(OUTPUT_FILE) 2>&1; [ $$? -eq 1 ]
12         $(CGREP) "Could not create incremental compilation crate directory" < $(OUTPUT_FILE)
13         # -v tests are fragile, hopefully this text won't change
14         $(CGREP) -v "internal compiler error" < $(OUTPUT_FILE)