diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-01-10 20:08:33 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-01-11 04:17:38 +0100 |
commit | 53a71b9f66dbc7f0ce44ec95bff7caa31fa0374b (patch) | |
tree | 80cb75d4da6921621305119c696d8a5f80c0a6e6 /sysdeps/mach | |
parent | 072795229c34a5530e83f90b262918cd241c3452 (diff) | |
download | glibc-53a71b9f66dbc7f0ce44ec95bff7caa31fa0374b.zip glibc-53a71b9f66dbc7f0ce44ec95bff7caa31fa0374b.tar.gz glibc-53a71b9f66dbc7f0ce44ec95bff7caa31fa0374b.tar.bz2 |
hurd: Mark more memory-hungry tests as unsupported
until RLIMIT_AS support gets commited in gnumach.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index 1cfedfc..f57b2b5 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -306,6 +306,15 @@ endif # For bug 30166 # (missing RLIMIT_AS support) +ifeq ($(subdir),elf) +tests-unsupported += tst-tls-allocation-failure-static-patched +endif +ifeq ($(subdir),io) +tests-unsupported += test-lfs +endif +ifeq ($(subdir),libio) +tests-unsupported += tst-asprintf-null +endif ifeq ($(subdir),malloc) tests-unsupported += tst-malloc-thread-fail tests-unsupported += tst-malloc-thread-fail-malloc-check @@ -314,6 +323,19 @@ tests-unsupported += tst-malloc-thread-fail-malloc-hugetlb1 tests-unsupported += tst-malloc-thread-fail-malloc-hugetlb2 tests-unsupported += tst-dynarray-fail endif +ifeq ($(subdir),misc) +tests-unsupported += bug18240 +endif +ifeq ($(subdir),stdio-common) +tests-unsupported += tst-getline-enomem +tests-unsupported += tst-getline-enomem-mem +endif +ifeq ($(subdir),stdlib) +tests-unsupported += test-bz22786 tst-strtod-overflow +endif +ifeq ($(subdir),timezone) +tests-unsupported += tst-tzset +endif # For bug 30167 # (select requests overflow) |