This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.23-323-g8142262


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  8142262bc5f14bf83fd67f654298500eed45aeee (commit)
      from  4facca0b0e0c99601673056352cd695102872828 (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=8142262bc5f14bf83fd67f654298500eed45aeee

commit 8142262bc5f14bf83fd67f654298500eed45aeee
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri May 13 16:57:09 2016 +0000

    conformtest: Do not expect strdup in string.h for XPG3.
    
    This patch corrects a spurious conformtest expectation of strdup in
    string.h for XPG3.
    
    Tested for x86_64 and x86.
    
    	* conform/data/string.h-data (strdup): Do not expect for [XPG3].
    	* conform/Makefile (test-xfail-XPG3/string.h/conform): Remove
    	variable.

diff --git a/ChangeLog b/ChangeLog
index 8ccf928..193f1d4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-05-13  Joseph Myers  <joseph@codesourcery.com>
+
+	* conform/data/string.h-data (strdup): Do not expect for [XPG3].
+	* conform/Makefile (test-xfail-XPG3/string.h/conform): Remove
+	variable.
+
 2016-05-13  H.J. Lu  <hongjiu.lu@intel.com>
 
 	[BZ #20072]
diff --git a/conform/Makefile b/conform/Makefile
index b46dc42..0d610ad 100644
--- a/conform/Makefile
+++ b/conform/Makefile
@@ -169,7 +169,6 @@ test-xfail-XPG3/pwd.h/conform = yes
 test-xfail-XPG3/search.h/conform = yes
 test-xfail-XPG3/signal.h/conform = yes
 test-xfail-XPG3/stdlib.h/conform = yes
-test-xfail-XPG3/string.h/conform = yes
 test-xfail-XPG3/sys/wait.h/conform = yes
 test-xfail-XPG4/arpa/inet.h/conform = yes
 test-xfail-XPG4/netdb.h/conform = yes
diff --git a/conform/data/string.h-data b/conform/data/string.h-data
index cc3b1c9..39fa76c 100644
--- a/conform/data/string.h-data
+++ b/conform/data/string.h-data
@@ -27,7 +27,7 @@ function int strcoll_l (const char*, const char*, locale_t)
 #endif
 function {char*} strcpy (char*, const char*)
 function size_t strcspn (const char*, const char*)
-#if !defined ISO && !defined ISO99 & !defined ISO11 && !defined POSIX && !defined POSIX2008
+#if !defined ISO && !defined ISO99 & !defined ISO11 && !defined XPG3 && !defined POSIX && !defined POSIX2008
 function {char*} strdup (const char*)
 #endif
 function {char*} strerror (int)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                  |    6 ++++++
 conform/Makefile           |    1 -
 conform/data/string.h-data |    2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]