0007-disable-test-for-non-MMU-systems.patch 749 B

123456789101112131415161718192021222324252627282930
  1. From 325f778f3bbb1b13c436e7754dd22097d31c04d2 Mon Sep 17 00:00:00 2001
  2. From: Waldemar Brodkorb <wbx@uclibc-ng.org>
  3. Date: Thu, 21 Aug 2014 22:02:26 +0200
  4. Subject: [PATCH 7/9] disable test for non-MMU systems
  5. This test fails for non-MMU systems, because it uses fork()
  6. Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
  7. ---
  8. test/Makefile | 4 ++++
  9. 1 file changed, 4 insertions(+)
  10. diff --git a/test/Makefile b/test/Makefile
  11. index 787c530..d51bb62 100644
  12. --- a/test/Makefile
  13. +++ b/test/Makefile
  14. @@ -42,6 +42,10 @@ endif
  15. ifeq ($(HAS_NO_THREADS),y)
  16. DIRS := $(filter-out pthread,$(DIRS))
  17. endif
  18. +# librt test needs fork()
  19. +ifneq ($(ARCH_USE_MMU),y)
  20. + DIRS := $(filter-out librt,$(DIRS))
  21. +endif
  22. test check all: run
  23. --
  24. 1.8.5.2 (Apple Git-48)