diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2019-05-13 09:31:10 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2019-05-13 09:31:10 +0200 |
commit | 38048ad53bcb31a9e26d58f46222704dacf178e7 (patch) | |
tree | 3e36de78891a9c110539ed1462a65ecb182e66eb | |
parent | a0c8d634ff51697fbe86483c32d787d5896fa43f (diff) |
disable some looping tests
-rw-r--r-- | test/malloc/Makefile.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/malloc/Makefile.in b/test/malloc/Makefile.in index d3dcd57..83cdeb3 100644 --- a/test/malloc/Makefile.in +++ b/test/malloc/Makefile.in @@ -1,7 +1,15 @@ # uClibc-ng malloc tests # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. -TESTS_DISABLED := time_malloc +TESTS_DISABLED := + +ifeq ($(TARGET_ARCH),arm) +ifneq ($(MALLOC_STANDARD),y) +TESTS_DISABLED += malloc tst-calloc +endif +endif + +TESTS_DISABLED += time_malloc ifneq ($(MALLOC_STANDARD),y) TESTS_DISABLED += tst-asprintf |