summaryrefslogtreecommitdiff
path: root/toolchain/uclibc/patches/0.9.33.2/0007-disable-test-for-non-MMU-systems.patch
blob: b21cffbd3f45f61d70349781f9954291565fcce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From 325f778f3bbb1b13c436e7754dd22097d31c04d2 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@uclibc-ng.org>
Date: Thu, 21 Aug 2014 22:02:26 +0200
Subject: [PATCH 7/9] disable test for non-MMU systems

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

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

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
 
-- 
1.8.5.2 (Apple Git-48)