diff mbox

[07/12] disable test for non-MMU systems

Message ID 1409119310-22929-7-git-send-email-wbx@openadk.org
State Superseded
Headers show

Commit Message

Waldemar Brodkorb Aug. 27, 2014, 6:01 a.m. UTC
From: Waldemar Brodkorb <wbx@uclibc-ng.org>

This test fails for non-MMU systems, because it uses fork()

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
---
 test/Makefile | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox

Patch

diff --git a/test/Makefile b/test/Makefile
index 787c530..d51bb62 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -42,6 +42,10 @@  endif
 ifeq ($(HAS_NO_THREADS),y)
 	DIRS := $(filter-out pthread,$(DIRS))
 endif
+# librt test needs fork()
+ifneq ($(ARCH_USE_MMU),y)
+	DIRS := $(filter-out librt,$(DIRS))
+endif
 
 test check all: run