Skip to content

Commit 531e356

Browse files
committed
don't run the test on macOS
1 parent 234e7c4 commit 531e356

File tree

1 file changed

+7
-1
lines changed
  • src/test/run-make-fulldeps/emit-stack-sizes

1 file changed

+7
-1
lines changed

Diff for: src/test/run-make-fulldeps/emit-stack-sizes/Makefile

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
-include ../tools.mk
22

3+
# This feature only works when the output object format is ELF so we ignore
4+
# macOS and Windows
35
ifdef IS_WINDOWS
4-
# Do nothing on MSVC.
6+
# Do nothing on Windows.
7+
all:
8+
exit 0
9+
else ifneq (,$(filter $(TARGET),i686-apple-darwin x86_64-apple-darwin))
10+
# Do nothing on macOS.
511
all:
612
exit 0
713
else

0 commit comments

Comments
 (0)