From bda6ca582a2b9307041c71dfd0f3f02684eda331 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Tue, 17 Mar 2026 16:13:41 +0700 Subject: [PATCH] Ignore malloc/usable_size, add tls test --- tests/Makefile | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index cfe0ecedf9..37203d81f6 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -6,9 +6,10 @@ IS_REDOX?=0 ifeq ($(IS_REDOX),1) FAILING_TESTS= else -FAILING_TESTS := tls # Wrong modified time -FAILING_TESTS += futimens +FAILING_TESTS := futimens +# Crash, mmap issue +FAILING_TESTS += malloc/usable_size # Not a FIFO FAILING_TESTS += mkfifo # Waitpid had EINTR @@ -31,9 +32,12 @@ FAILING_TESTS += unistd/link FAILING_TESTS += sigqueue # Unwrap hit, written as TODO FAILING_TESTS += pthread/customstack -# sys_resource/getrusage -# time/times -# netdb/netdb +# Returning garbage values +FAILING_TESTS += sys_resource/getrusage +# No times.h header +#FAILING_TESTS += time/times +# Outdated test +#FAILING_TESTS += netdb/netdb endif @@ -70,7 +74,6 @@ EXPECT_NAMES=\ locale/duplocale \ locale/newlocale \ locale/setlocale \ - malloc/usable_size \ math \ regex \ select \ @@ -162,6 +165,7 @@ EXPECT_NAMES=\ time/time \ time/timegm \ time/tzset \ + tls \ unistd/access \ unistd/brk \ unistd/constants \