[git commit] test: disable librt shmtest on non-MMU systems

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Thu Sep 4 11:12:52 UTC 2014


commit: http://git.uclibc.org/uClibc/commit/?id=ff48662bbadd3d49fabe6fdfeb8e8181d4c80b06
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

This test fails for non-MMU systems, because it uses fork()
Thanks to Waldemar Brodkorb!

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 test/librt/Makefile.in |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/test/librt/Makefile.in b/test/librt/Makefile.in
index 15ecbae..f25522c 100644
--- a/test/librt/Makefile.in
+++ b/test/librt/Makefile.in
@@ -2,3 +2,7 @@
 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 
 LDFLAGS_shmtest := -lrt
+
+ifeq ($(ARCH_USE_MMU),)
+TESTS_DISABLED := shmtest
+endif


More information about the uClibc-cvs mailing list