diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2023-08-28 08:43:47 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2023-08-28 08:43:47 +0200 |
commit | 6d44beee86ad4633cee5d2ad3283a794fe864501 (patch) | |
tree | 71a1b19d8e0a0cdb0d5403f99f73d84c94afdfba | |
parent | 0f303c63fab7f4038515ced6f2659242cf60ac19 (diff) |
disable mmap2 for arm, fixes stalling testsuite run on armv5-nommu with kernel 6.1.44
-rw-r--r-- | test/mmap/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/mmap/Makefile.in b/test/mmap/Makefile.in index b15ea82..c8b1d96 100644 --- a/test/mmap/Makefile.in +++ b/test/mmap/Makefile.in @@ -1,2 +1,6 @@ # uClibc-ng mmap tests # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + +ifeq ($(TARGET_ARCH),arm) +TESTS_DISABLED := mmap2 +endif |