From 433da1fc047bb39a263eefca4bdb2b1972f1d2ce Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Thu, 30 Mar 2023 07:34:55 -0500 Subject: Move almost all run-make-fulldeps to run-make They pass fine. --- tests/run-make/exit-code/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/run-make/exit-code/Makefile (limited to 'tests/run-make/exit-code/Makefile') diff --git a/tests/run-make/exit-code/Makefile b/tests/run-make/exit-code/Makefile new file mode 100644 index 00000000000..3ffaafe9065 --- /dev/null +++ b/tests/run-make/exit-code/Makefile @@ -0,0 +1,11 @@ +include ../tools.mk + +all: + $(RUSTC) success.rs; [ $$? -eq 0 ] + $(RUSTC) --invalid-arg-foo; [ $$? -eq 1 ] + $(RUSTC) compile-error.rs; [ $$? -eq 1 ] + $(RUSTC) -Ztreat-err-as-bug compile-error.rs; [ $$? -eq 101 ] + $(RUSTDOC) -o $(TMPDIR)/exit-code success.rs; [ $$? -eq 0 ] + $(RUSTDOC) --invalid-arg-foo; [ $$? -eq 1 ] + $(RUSTDOC) compile-error.rs; [ $$? -eq 1 ] + $(RUSTDOC) lint-failure.rs; [ $$? -eq 1 ] -- cgit 1.4.1-3-g733a5