diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-06-29 00:14:52 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-06-29 00:16:33 +0000 |
commit | 269e4c17cd1031d3feb5adc608edf7c2b19b3f41 (patch) | |
tree | 90202a8a58c19e87e83ff7ecf3f4e6cd02f5b08c /nptl/Makefile | |
parent | f512321130d6c02332d441812ef4780908bb744d (diff) | |
download | glibc-269e4c17cd1031d3feb5adc608edf7c2b19b3f41.tar.gz glibc-269e4c17cd1031d3feb5adc608edf7c2b19b3f41.tar.xz glibc-269e4c17cd1031d3feb5adc608edf7c2b19b3f41.zip |
htl: Enable cancel*16 an cancel*20 tests
* nptl/tst-cancel16.c, tst-cancel20.c, tst-cancelx16.c, tst-cancelx20.c: Move to... * sysdeps/pthread: ... here. * nptl/Makefile: Move corresponding references and rules to... * sysdeps/pthread/Makefile: ... here. * sysdeps/mach/hurd/i386/Makefile: Xfail tst-cancel*16 for now: missing barrier pshared support, but test should be working otherwise.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 4602824bf1..5e62c77853 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -278,8 +278,7 @@ tests = tst-attr2 tst-attr3 tst-default-attr \ tst-sem17 \ tst-tsd3 tst-tsd4 \ tst-cancel4 tst-cancel4_1 tst-cancel4_2 tst-cancel5 \ - tst-cancel7 \ - tst-cancel16 tst-cancel17 tst-cancel20 tst-cancel24 \ + tst-cancel7 tst-cancel17 tst-cancel24 \ tst-cleanup4 \ tst-signal3 \ tst-exec4 tst-exec5 \ @@ -357,9 +356,7 @@ endif LDFLAGS-pthread.so = -Wl,--enable-new-dtags,-z,nodelete,-z,initfirst -tests += tst-cancelx4 tst-cancelx5 tst-cancelx7 \ - tst-cancelx16 tst-cancelx17 tst-cancelx20 \ - tst-cleanupx4 +tests += tst-cancelx4 tst-cancelx5 tst-cancelx7 tst-cancelx17 tst-cleanupx4 ifeq ($(build-shared),yes) tests += tst-compat-forwarder tst-audit-threads @@ -476,9 +473,7 @@ CFLAGS-tst-cancelx5.c += -Wno-error CFLAGS-tst-cancelx4.c += -fexceptions CFLAGS-tst-cancelx5.c += -fexceptions CFLAGS-tst-cancelx7.c += -fexceptions -CFLAGS-tst-cancelx16.c += -fexceptions CFLAGS-tst-cancelx17.c += -fexceptions -CFLAGS-tst-cancelx20.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-tst-cleanupx4.c += -fexceptions CFLAGS-tst-cleanupx4aux.c += -fexceptions CFLAGS-tst-initializers1.c += -W -Wall -Werror |