public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Noah Goldstein <goldstein.w.n@gmail.com>
To: libc-alpha@sourceware.org
Cc: goldstein.w.n@gmail.com, hjl.tools@gmail.com, carlos@systemhalted.org
Subject: [PATCH v1 1/2] nptl: Changes tests to be 1/line and sorted
Date: Mon, 19 Dec 2022 11:27:25 -0800	[thread overview]
Message-ID: <20221219192726.999818-1-goldstein.w.n@gmail.com> (raw)

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


             reply	other threads:[~2022-12-19 19:27 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-19 19:27 Noah Goldstein [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221219192726.999818-1-goldstein.w.n@gmail.com \
    --to=goldstein.w.n@gmail.com \
    --cc=carlos@systemhalted.org \
    --cc=hjl.tools@gmail.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).