aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2017-06-01 17:17:43 +0000
committerJoseph Myers <joseph@codesourcery.com>2017-06-01 17:17:43 +0000
commit6da85a0daf65a407f942622e23fc20b37b80168c (patch)
treeea4bc8a596c8e3fe08aca6839ca2b98cd7c1b5d5 /ChangeLog
parent72b81552a1239f91054ae0c8469e6d780f79a890 (diff)
downloadglibc-6da85a0daf65a407f942622e23fc20b37b80168c.zip
glibc-6da85a0daf65a407f942622e23fc20b37b80168c.tar.gz
glibc-6da85a0daf65a407f942622e23fc20b37b80168c.tar.bz2
conformtest: Correct signal.h expectations for XPG4 / XPG42.
Various of the signal.h conform/ failures for XPG4 and XPG42 are actually the result of incorrect test expectations rather than header bugs. This patch fixes the expectations to accord with those standards (this does not however allow any XFAILs to be removed, as some header bugs remain). Note for anyone comparing with the standards: corrigendum U013/16 removes the mention of a sigmask function in signal.h (C435 lists such a function in the definition of signal.h, but without any actual specification for the function itself), so sigmask is not included in the expectations. Tested for x86_64. * conform/data/signal.h-data (sa_sigaction): Do not expect for [XPG4]. (SA_SIGINFO): Likewise. (SA_ONSTACK): Likewise. (SA_RESETHAND): Likewise. (SA_RESTART): Likewise. (SA_NOCLDWAIT): Likewise. (SA_NODEFER): Likewise. (SS_ONSTACK): Likewise. (SS_DISABLE): Likewise. (MINSIGSTKSZ): Likewise. (SIGSTKSZ): Likewise. (ucontext_t): Likewise. (stack_t): Likewise. (struct sigstack): Likewise. (SI_USER): Do not expect for [XPG4 || XPG42]. (SI_QUEUE): Likewise. (SI_TIMER): Likewise. (SI_ASYNCIO): Likewise. (SI_MESGQ): Likewise. (bsd_signal): Do not expect for [XPG4]. (killpg): Likewise. (sigaltstack): Likewise. (sighold): Likewise. (sigignore): Likewise. (siginterrupt): Likewise. (sigpause): Likewise. (sigrelse): Likewise. (sigset): Likewise. (sigwait): Do not expect for [XPG4 || XPG42].
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog33
1 files changed, 33 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5c54da8..961c549 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,36 @@
+2017-06-01 Joseph Myers <joseph@codesourcery.com>
+
+ * conform/data/signal.h-data (sa_sigaction): Do not expect for
+ [XPG4].
+ (SA_SIGINFO): Likewise.
+ (SA_ONSTACK): Likewise.
+ (SA_RESETHAND): Likewise.
+ (SA_RESTART): Likewise.
+ (SA_NOCLDWAIT): Likewise.
+ (SA_NODEFER): Likewise.
+ (SS_ONSTACK): Likewise.
+ (SS_DISABLE): Likewise.
+ (MINSIGSTKSZ): Likewise.
+ (SIGSTKSZ): Likewise.
+ (ucontext_t): Likewise.
+ (stack_t): Likewise.
+ (struct sigstack): Likewise.
+ (SI_USER): Do not expect for [XPG4 || XPG42].
+ (SI_QUEUE): Likewise.
+ (SI_TIMER): Likewise.
+ (SI_ASYNCIO): Likewise.
+ (SI_MESGQ): Likewise.
+ (bsd_signal): Do not expect for [XPG4].
+ (killpg): Likewise.
+ (sigaltstack): Likewise.
+ (sighold): Likewise.
+ (sigignore): Likewise.
+ (siginterrupt): Likewise.
+ (sigpause): Likewise.
+ (sigrelse): Likewise.
+ (sigset): Likewise.
+ (sigwait): Do not expect for [XPG4 || XPG42].
+
2017-06-01 Zack Weinberg <zackw@panix.com>
[BZ #21514]