diff options
-rw-r--r-- | test/malloc/Makefile.in | 4 | ||||
-rw-r--r-- | test/malloc/tst-valloc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/malloc/Makefile.in b/test/malloc/Makefile.in index ca8493a..7d9577a 100644 --- a/test/malloc/Makefile.in +++ b/test/malloc/Makefile.in @@ -3,10 +3,6 @@ TESTS_DISABLED := time_malloc -ifneq ($(UCLIBC_SUSV2_LEGACY),y) -TESTS_DISABLED += tst-valloc -endif - ifneq ($(UCLIBC_HAS_OBSTACK),y) TESTS_DISABLED += tst-obstack endif diff --git a/test/malloc/tst-valloc.c b/test/malloc/tst-valloc.c index 643a0dd..752e107 100644 --- a/test/malloc/tst-valloc.c +++ b/test/malloc/tst-valloc.c @@ -6,6 +6,7 @@ int main (void) { +#if __UCLIBC_SUSV2_LEGACY__ char *p; int pagesize = getpagesize (); int i; @@ -20,4 +21,7 @@ main (void) } return 0; +#else + return 23; +#endif } |