GNU C Library master sources branch master updated. glibc-2.23-239-g6da052f
jsm28@sourceware.org
jsm28@sourceware.org
Tue Apr 26 13:56:00 GMT 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".
The branch, master has been updated
via 6da052fd6a7e589e3a7ffeeec5756518f9d60e1a (commit)
from bf074726151d032bc345eaaa56e0858b1677e2ee (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6da052fd6a7e589e3a7ffeeec5756518f9d60e1a
commit 6da052fd6a7e589e3a7ffeeec5756518f9d60e1a
Author: Joseph Myers <joseph@codesourcery.com>
Date: Tue Apr 26 13:56:04 2016 +0000
conformtest: Correct XOPEN2K stdarg.h expectations.
The conform/ test expectations for stdarg.h were wrongly missing an
expectation of va_copy for XOPEN2K (based on C99, so including that
macro). This patch fixes this.
Tested for x86_64 and x86.
* conform/data/stdarg.h-data [XOPEN2K] (va_copy): Require macro.
* conform/Makefile (test-xfail-XOPEN2K/stdarg.h/conform): Remove
variable.
diff --git a/ChangeLog b/ChangeLog
index 8cbc1b1..b281c54 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2016-04-26 Joseph Myers <joseph@codesourcery.com>
+ * conform/data/stdarg.h-data [XOPEN2K] (va_copy): Require macro.
+ * conform/Makefile (test-xfail-XOPEN2K/stdarg.h/conform): Remove
+ variable.
+
* libio/stdio.h (off_t): Define if [__USE_XOPEN2K], not
[__USE_XOPEN2K8].
[__USE_LARGEFILE64] (off64_t): Likewise.
diff --git a/conform/Makefile b/conform/Makefile
index 7af4b2f..a1759c9 100644
--- a/conform/Makefile
+++ b/conform/Makefile
@@ -215,7 +215,6 @@ test-xfail-XOPEN2K/langinfo.h/conform = yes
test-xfail-XOPEN2K/mqueue.h/conform = yes
test-xfail-XOPEN2K/semaphore.h/conform = yes
test-xfail-XOPEN2K/signal.h/conform = yes
-test-xfail-XOPEN2K/stdarg.h/conform = yes
test-xfail-XOPEN2K/sys/wait.h/conform = yes
test-xfail-XOPEN2K/ucontext.h/conform = yes
test-xfail-POSIX2008/arpa/inet.h/conform = yes
diff --git a/conform/data/stdarg.h-data b/conform/data/stdarg.h-data
index 2c87a3b..53addb9 100644
--- a/conform/data/stdarg.h-data
+++ b/conform/data/stdarg.h-data
@@ -5,7 +5,7 @@ macro va_start
macro va_arg
macro va_end
-#if defined ISO99 || defined ISO11 || defined POSIX2008 || defined XOPEN2K8
+#if defined ISO99 || defined ISO11 || defined XOPEN2K || defined POSIX2008 || defined XOPEN2K8
macro va_copy
#endif
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
conform/Makefile | 1 -
conform/data/stdarg.h-data | 2 +-
3 files changed, 5 insertions(+), 2 deletions(-)
hooks/post-receive
--
GNU C Library master sources
More information about the Glibc-cvs
mailing list