1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?St=C3=A9phane_Glondu?= <glondu@debian.org>
Date: Sat, 6 Sep 2025 09:02:45 +0200
Subject: Disable unit_{rand,hash} tests
---
GNUmakefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/GNUmakefile b/GNUmakefile
index 6aab96c..d8c8e71 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -576,7 +576,7 @@ unit_clean:
.PHONY: unit
ifneq "$(SYS)" "Darwin"
-unit: unit_maybe_alloc unit_preallocable unit_list unit_clean unit_rand unit_hash
+unit: unit_maybe_alloc unit_preallocable unit_list unit_clean
else
unit:
@echo [-] unit tests are skipped on Darwin \(lacks GNU linker feature --wrap\)
|