diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-09-04 13:12:52 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-09-04 13:12:52 +0200 |
commit | ff48662bbadd3d49fabe6fdfeb8e8181d4c80b06 (patch) | |
tree | ace403e2918327560e1fdc6c1f52230793da72b2 /test/librt | |
parent | 7a3acb243bc09f253a77faee7ee097a781f3eebe (diff) |
test: disable librt shmtest on non-MMU systems
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>
Diffstat (limited to 'test/librt')
-rw-r--r-- | 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 15ecbae5b..f25522cbe 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 |