From 531e3566504f2bab929eaf57c4ba84838857933f Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 26 Sep 2018 16:22:52 +0200 Subject: [PATCH] don't run the test on macOS --- src/test/run-make-fulldeps/emit-stack-sizes/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/test/run-make-fulldeps/emit-stack-sizes/Makefile b/src/test/run-make-fulldeps/emit-stack-sizes/Makefile index 6ed9b6c4314c6..c2f643ce24c41 100644 --- a/src/test/run-make-fulldeps/emit-stack-sizes/Makefile +++ b/src/test/run-make-fulldeps/emit-stack-sizes/Makefile @@ -1,7 +1,13 @@ -include ../tools.mk +# This feature only works when the output object format is ELF so we ignore +# macOS and Windows ifdef IS_WINDOWS -# Do nothing on MSVC. +# Do nothing on Windows. +all: + exit 0 +else ifneq (,$(filter $(TARGET),i686-apple-darwin x86_64-apple-darwin)) +# Do nothing on macOS. all: exit 0 else