|
|
179894 |
commit 28c30a6232aa9a54783c146590498a061fc0112a
|
|
|
179894 |
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
|
|
|
179894 |
Date: Sun Feb 9 19:50:21 2020 +0000
|
|
|
179894 |
|
|
|
179894 |
pthread: Move most once tests from nptl to sysdeps/pthread
|
|
|
179894 |
|
|
|
179894 |
So they can be checked with htl too.
|
|
|
179894 |
|
|
|
179894 |
# Conflicts:
|
|
|
179894 |
# sysdeps/pthread/Makefile
|
|
|
179894 |
# (Moved only the tests in this commit which subsequently
|
|
|
179894 |
# needed for the pthread_once fix)
|
|
|
179894 |
|
|
|
179894 |
diff --git a/nptl/Makefile b/nptl/Makefile
|
|
|
179894 |
index b14de3ffb330c10b..dcf3868869767015 100644
|
|
|
179894 |
--- a/nptl/Makefile
|
|
|
179894 |
+++ b/nptl/Makefile
|
|
|
179894 |
@@ -260,7 +260,7 @@ tests = tst-attr1 tst-attr2 tst-attr3 tst-default-attr \
|
|
|
179894 |
tst-rwlock4 tst-rwlock5 tst-rwlock6 tst-rwlock7 tst-rwlock8 \
|
|
|
179894 |
tst-rwlock9 tst-rwlock10 tst-rwlock11 tst-rwlock12 tst-rwlock13 \
|
|
|
179894 |
tst-rwlock14 tst-rwlock15 tst-rwlock16 tst-rwlock17 tst-rwlock18 \
|
|
|
179894 |
- tst-once1 tst-once2 tst-once3 tst-once4 tst-once5 \
|
|
|
179894 |
+ tst-once5 \
|
|
|
179894 |
tst-key1 tst-key2 tst-key3 tst-key4 \
|
|
|
179894 |
tst-sem1 tst-sem2 tst-sem3 tst-sem4 tst-sem5 tst-sem6 tst-sem7 \
|
|
|
179894 |
tst-sem8 tst-sem9 tst-sem10 tst-sem14 \
|
|
|
179894 |
@@ -384,8 +384,7 @@ tests += tst-cancelx2 tst-cancelx3 tst-cancelx4 tst-cancelx5 \
|
|
|
179894 |
tst-cancelx6 tst-cancelx7 tst-cancelx8 tst-cancelx9 tst-cancelx10 \
|
|
|
179894 |
tst-cancelx11 tst-cancelx12 tst-cancelx13 tst-cancelx14 tst-cancelx15 \
|
|
|
179894 |
tst-cancelx16 tst-cancelx17 tst-cancelx18 tst-cancelx20 tst-cancelx21 \
|
|
|
179894 |
- tst-cleanupx0 tst-cleanupx1 tst-cleanupx2 tst-cleanupx3 tst-cleanupx4 \
|
|
|
179894 |
- tst-oncex3 tst-oncex4
|
|
|
179894 |
+ tst-cleanupx0 tst-cleanupx1 tst-cleanupx2 tst-cleanupx3 tst-cleanupx4
|
|
|
179894 |
ifeq ($(build-shared),yes)
|
|
|
179894 |
tests += tst-atfork2 tst-tls4 tst-_res1 tst-fini1 tst-compat-forwarder \
|
|
|
179894 |
tst-audit-threads
|
|
|
179894 |
@@ -525,8 +524,6 @@ CFLAGS-tst-cleanupx2.c += -fexceptions
|
|
|
179894 |
CFLAGS-tst-cleanupx3.c += -fexceptions
|
|
|
179894 |
CFLAGS-tst-cleanupx4.c += -fexceptions
|
|
|
179894 |
CFLAGS-tst-cleanupx4aux.c += -fexceptions
|
|
|
179894 |
-CFLAGS-tst-oncex3.c += -fexceptions
|
|
|
179894 |
-CFLAGS-tst-oncex4.c += -fexceptions
|
|
|
179894 |
CFLAGS-tst-align.c += $(stack-align-test-flags)
|
|
|
179894 |
CFLAGS-tst-align3.c += $(stack-align-test-flags)
|
|
|
179894 |
CFLAGS-tst-initializers1.c += -W -Wall -Werror
|
|
|
179894 |
diff --git a/sysdeps/pthread/Makefile b/sysdeps/pthread/Makefile
|
|
|
179894 |
index 98a92f8d6bb119ba..14ef04247cb84ad3 100644
|
|
|
179894 |
--- a/sysdeps/pthread/Makefile
|
|
|
179894 |
+++ b/sysdeps/pthread/Makefile
|
|
|
179894 |
@@ -33,11 +33,18 @@ endif
|
|
|
179894 |
|
|
|
179894 |
tst-create1mod.so-no-z-defs = yes
|
|
|
179894 |
|
|
|
179894 |
+tests += tst-once1 tst-once2 tst-once3 tst-once4
|
|
|
179894 |
+
|
|
|
179894 |
+tests += tst-oncex3 tst-oncex4
|
|
|
179894 |
+
|
|
|
179894 |
ifeq ($(build-shared),yes)
|
|
|
179894 |
# Build all the modules even when not actually running test programs.
|
|
|
179894 |
tests: $(test-modules)
|
|
|
179894 |
endif
|
|
|
179894 |
|
|
|
179894 |
+CFLAGS-tst-oncex3.c += -fexceptions
|
|
|
179894 |
+CFLAGS-tst-oncex4.c += -fexceptions
|
|
|
179894 |
+
|
|
|
179894 |
modules-names += tst-create1mod
|
|
|
179894 |
test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names)))
|
|
|
179894 |
|
|
|
179894 |
diff --git a/nptl/tst-once1.c b/sysdeps/pthread/tst-once1.c
|
|
|
179894 |
similarity index 100%
|
|
|
179894 |
rename from nptl/tst-once1.c
|
|
|
179894 |
rename to sysdeps/pthread/tst-once1.c
|
|
|
179894 |
diff --git a/nptl/tst-once2.c b/sysdeps/pthread/tst-once2.c
|
|
|
179894 |
similarity index 100%
|
|
|
179894 |
rename from nptl/tst-once2.c
|
|
|
179894 |
rename to sysdeps/pthread/tst-once2.c
|
|
|
179894 |
diff --git a/nptl/tst-once3.c b/sysdeps/pthread/tst-once3.c
|
|
|
179894 |
similarity index 100%
|
|
|
179894 |
rename from nptl/tst-once3.c
|
|
|
179894 |
rename to sysdeps/pthread/tst-once3.c
|
|
|
179894 |
diff --git a/nptl/tst-once4.c b/sysdeps/pthread/tst-once4.c
|
|
|
179894 |
similarity index 100%
|
|
|
179894 |
rename from nptl/tst-once4.c
|
|
|
179894 |
rename to sysdeps/pthread/tst-once4.c
|
|
|
179894 |
diff --git a/nptl/tst-oncex3.c b/sysdeps/pthread/tst-oncex3.c
|
|
|
179894 |
similarity index 100%
|
|
|
179894 |
rename from nptl/tst-oncex3.c
|
|
|
179894 |
rename to sysdeps/pthread/tst-oncex3.c
|
|
|
179894 |
diff --git a/nptl/tst-oncex4.c b/sysdeps/pthread/tst-oncex4.c
|
|
|
179894 |
similarity index 100%
|
|
|
179894 |
rename from nptl/tst-oncex4.c
|
|
|
179894 |
rename to sysdeps/pthread/tst-oncex4.c
|