public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v1 1/2] nptl: Changes tests to be 1/line and sorted
@ 2022-12-19 19:27 Noah Goldstein
  2022-12-19 19:27 ` [PATCH v1 2/2] nptl: Add a testcase for inputs racey to {w}memcmp{eq} BZ #29863 Noah Goldstein
  2022-12-29 16:40 ` [PATCH v1 1/2] nptl: Changes tests to be 1/line and sorted Noah Goldstein
  0 siblings, 2 replies; 6+ messages in thread
From: Noah Goldstein @ 2022-12-19 19:27 UTC (permalink / raw)
  To: libc-alpha; +Cc: goldstein.w.n, hjl.tools, carlos

Just small QOL change.
---
 nptl/Makefile | 103 ++++++++++++++++++++++++++++++++++----------------
 1 file changed, 70 insertions(+), 33 deletions(-)

diff --git a/nptl/Makefile b/nptl/Makefile
index 3d2ce8af8a..fc955cd604 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -270,48 +270,85 @@ LDLIBS-tst-thread-exit-clobber = -lstdc++
 CFLAGS-tst-minstack-throw.o = -std=gnu++11
 LDLIBS-tst-minstack-throw = -lstdc++
 
-tests = tst-attr2 tst-attr3 tst-default-attr \
-	tst-mutex5a tst-mutex7a \
-	tst-mutexpi1 tst-mutexpi2 tst-mutexpi3 tst-mutexpi4 \
-	tst-mutexpi5 tst-mutexpi5a tst-mutexpi6 tst-mutexpi7 tst-mutexpi7a \
-	tst-mutexpi9 tst-mutexpi10 \
+tests = \
+	tst-attr2 \
+	tst-attr3 \
+	tst-cancel17 \
+	tst-cancel24 \
+	tst-cancel4_1 \
+	tst-cancel4_2 \
+	tst-cancel7 \
 	tst-cond26 \
-	tst-robustpi1 tst-robustpi2 tst-robustpi3 tst-robustpi4 tst-robustpi5 \
-	tst-robustpi6 tst-robustpi7 tst-robustpi9 \
-	tst-rwlock2 tst-rwlock2a tst-rwlock2b tst-rwlock3 \
-	tst-rwlock6 tst-rwlock7 tst-rwlock8 \
-	tst-rwlock9 tst-rwlock10 tst-rwlock11 \
-	tst-rwlock15 tst-rwlock17 tst-rwlock18 \
+	tst-context1 \
+	tst-default-attr \
+	tst-dlsym1 \
+	tst-exec4 \
+	tst-exec5 \
+	tst-initializers1 $(addprefix tst-initializers1-,c89 gnu89 c99 gnu99 c11 gnu11) \
+	tst-minstack-cancel \
+	tst-minstack-exit \
+	tst-minstack-throw \
+	tst-mutex5a \
+	tst-mutex7a \
+	tst-mutexpi1 \
+	tst-mutexpi10 \
+	tst-mutexpi2 \
+	tst-mutexpi3 \
+	tst-mutexpi4 \
+	tst-mutexpi5 \
+	tst-mutexpi5a \
+	tst-mutexpi6 \
+	tst-mutexpi7 \
+	tst-mutexpi7a \
+	tst-mutexpi9 \
 	tst-once5 \
-	tst-sem17 \
-	tst-tsd3 tst-tsd4 \
-	tst-cancel4_1 tst-cancel4_2 \
-	tst-cancel7 tst-cancel17 tst-cancel24 \
-	tst-signal3 \
-	tst-exec4 tst-exec5 \
-	tst-stack2 tst-stack3 tst-stack4 \
 	tst-pthread-attr-affinity \
 	tst-pthread-attr-affinity-fail \
-	tst-dlsym1 \
-	tst-context1 \
-	tst-sched1 \
-	tst-initializers1 $(addprefix tst-initializers1-,\
-			    c89 gnu89 c99 gnu99 c11 gnu11) \
-	tst-thread_local1 \
+	tst-pthread-attr-sigmask \
+	tst-pthread-defaultattr-free \
+	tst-pthread-gdb-attach \
+	tst-pthread-gdb-attach-static \
+	tst-pthread-timedlock-lockloop \
+	tst-pthread_exit-nothreads \
+	tst-pthread_exit-nothreads-static \
 	tst-robust-fork \
-	tst-thread-exit-clobber tst-minstack-cancel tst-minstack-exit \
-	tst-minstack-throw \
+	tst-robustpi1 \
+	tst-robustpi2 \
+	tst-robustpi3 \
+	tst-robustpi4 \
+	tst-robustpi5 \
+	tst-robustpi6 \
+	tst-robustpi7 \
+	tst-robustpi9 \
 	tst-rwlock-pwn \
+	tst-rwlock10 \
+	tst-rwlock11 \
+	tst-rwlock15 \
+	tst-rwlock17 \
+	tst-rwlock18 \
+	tst-rwlock2 \
+	tst-rwlock2a \
+	tst-rwlock2b \
+	tst-rwlock3 \
+	tst-rwlock6 \
+	tst-rwlock7 \
+	tst-rwlock8 \
+	tst-rwlock9 \
+	tst-sched1 \
+	tst-sem17 \
+	tst-signal3 \
+	tst-stack2 \
+	tst-stack3 \
+	tst-stack4 \
 	tst-thread-affinity-pthread \
 	tst-thread-affinity-pthread2 \
 	tst-thread-affinity-sched \
-	tst-pthread-defaultattr-free \
-	tst-pthread-attr-sigmask \
-	tst-pthread-timedlock-lockloop \
-	tst-pthread-gdb-attach tst-pthread-gdb-attach-static \
-	tst-pthread_exit-nothreads \
-	tst-pthread_exit-nothreads-static \
-	tst-thread-setspecific
+	tst-thread-exit-clobber \
+	tst-thread-setspecific \
+	tst-thread_local1 \
+	tst-tsd3 \
+	tst-tsd4 \
+# tests
 
 tests-nolibpthread = \
   tst-pthread_exit-nothreads \
-- 
2.34.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-01-10 23:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-19 19:27 [PATCH v1 1/2] nptl: Changes tests to be 1/line and sorted Noah Goldstein
2022-12-19 19:27 ` [PATCH v1 2/2] nptl: Add a testcase for inputs racey to {w}memcmp{eq} BZ #29863 Noah Goldstein
2022-12-19 19:28   ` Noah Goldstein
2022-12-29 16:41     ` Noah Goldstein
2023-01-10 23:03       ` Noah Goldstein
2022-12-29 16:40 ` [PATCH v1 1/2] nptl: Changes tests to be 1/line and sorted Noah Goldstein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).