diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-04-18 17:37:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-04-18 17:37:20 +0200 |
commit | a745b328b61e678ea067cde1f6b62964f7655354 (patch) | |
tree | 32bc25472f18fb5255453553f1d4ecf033de482a | |
parent | 0a0166aee3e72186eb6a855342304fc01eb954cd (diff) |
riscv32: disable stalling mmap2 test
-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 83d12fd..5eff82e 100644 --- a/test/mmap/Makefile.in +++ b/test/mmap/Makefile.in @@ -5,6 +5,10 @@ ifeq ($(TARGET_ARCH),arm) TESTS_DISABLED := mmap2 endif +ifeq ($(TARGET_ARCH),riscv32) +TESTS_DISABLED := mmap2 +endif + ifeq ($(TARGET_ARCH),xtensa) TESTS_DISABLED := mmap2 endif |