From 652a9cfdbce568ae8606b142ad3ea68fc91870ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E6=9D=B0=E5=8F=8B=20Jieyou=20Xu=20=28Joe=29?= Date: Sat, 3 Aug 2024 04:30:06 +0000 Subject: [PATCH] [EXPERIMENTAL] is this makefile even testing anything --- tests/run-make/print-target-list/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-make/print-target-list/Makefile b/tests/run-make/print-target-list/Makefile index f23c40d4281e3..1a4ab210c542b 100644 --- a/tests/run-make/print-target-list/Makefile +++ b/tests/run-make/print-target-list/Makefile @@ -4,5 +4,5 @@ include ../tools.mk # target specifications all: for target in $(shell $(BARE_RUSTC) --print target-list); do \ - $(BARE_RUSTC) --target $$target --print sysroot; \ + $(BARE_RUSTC) --target $$target --print sysroot || exit 1; \ done