OSDN Git Service

test: disable librt shmtest on non-MMU systems
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 4 Sep 2014 11:12:52 +0000 (13:12 +0200)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 4 Sep 2014 11:12:52 +0000 (13:12 +0200)
This test fails for non-MMU systems, because it uses fork()
Thanks to Waldemar Brodkorb!

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
test/librt/Makefile.in

index 15ecbae..f25522c 100644 (file)
@@ -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