Skip to content

Commit 5320621

Browse files
committed
CI: check if MUSL is correctly detected
Signed-off-by: Andrei Horodniceanu <[email protected]>
1 parent cbd8aca commit 5320621

File tree

1 file changed

+5
-0
lines changed
  • runtime/druntime/test/exceptions

1 file changed

+5
-0
lines changed

runtime/druntime/test/exceptions/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ endif
66
ifeq ($(OS),linux)
77
# FIXME: detect musl libc robustly; just checking Alpine Linux' apk tool for now
88
ifeq (1,$(shell which apk &>/dev/null && echo 1))
9+
$(warning ~~~ musl detected)
910
IS_MUSL:=1
11+
else
12+
$(warning ~~~ musl NOT detected)
1013
endif
1114
endif
1215

@@ -65,6 +68,8 @@ endif
6568
ifeq ($(OS),windows)
6669
TESTS+=winstack
6770
endif
71+
72+
$(warning ~~~ All the tests are: $(TESTS))
6873
include ../common.mak
6974

7075
$(ROOT)/line_trace.done: $(ROOT)/line_trace$(DOTEXE)

0 commit comments

Comments
 (0)