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-337-g4c9695f


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  4c9695fa8eff5072d319adf8eab35329172394d1 (commit)
      from  b3d7eaf10a604786aa19c64b4a56303c821c46a1 (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=4c9695fa8eff5072d319adf8eab35329172394d1

commit 4c9695fa8eff5072d319adf8eab35329172394d1
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Thu May 19 14:35:41 2016 +0000

    conformtest: Correct search.h expectations for XPG3.
    
    This patch corrects some conformtest expectations for search.h for
    XPG3.
    
    Tested for x86_64 and x86.
    
    	* conform/data/search.h-data (insque): Do not expect for [XPG3].
    	(remque): Likewise.
    	* conform/Makefile (test-xfail-XPG3/search.h/conform): Remove
    	variable.

diff --git a/ChangeLog b/ChangeLog
index 4766d14..f5a1dc8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-05-19  Joseph Myers  <joseph@codesourcery.com>
+
+	* conform/data/search.h-data (insque): Do not expect for [XPG3].
+	(remque): Likewise.
+	* conform/Makefile (test-xfail-XPG3/search.h/conform): Remove
+	variable.
+
 2016-05-18  Joseph Myers  <joseph@codesourcery.com>
 
 	* math/libm-test.inc: Update comment not to refer to signs of NaNs
diff --git a/conform/Makefile b/conform/Makefile
index 6c7b683..eb64e0e 100644
--- a/conform/Makefile
+++ b/conform/Makefile
@@ -166,7 +166,6 @@ test-xfail-XOPEN2K8/ndbm.h/conform = yes
 test-xfail-XPG3/ftw.h/conform = yes
 test-xfail-XPG3/limits.h/conform = yes
 test-xfail-XPG3/pwd.h/conform = yes
-test-xfail-XPG3/search.h/conform = yes
 test-xfail-XPG3/signal.h/conform = yes
 test-xfail-XPG3/sys/wait.h/conform = yes
 test-xfail-XPG4/arpa/inet.h/conform = yes
diff --git a/conform/data/search.h-data b/conform/data/search.h-data
index 3abbc66..3d66fdf 100644
--- a/conform/data/search.h-data
+++ b/conform/data/search.h-data
@@ -17,10 +17,14 @@ constant leaf
 function int hcreate (size_t)
 function void hdestroy (void)
 function {ENTRY*} hsearch (ENTRY, ACTION)
+#ifndef XPG3
 function void insque (void*, void*)
+#endif
 function {void*} lfind (const void*, const void*, size_t*, size_t, int (*)(const void*, const void*))
 function {void*} lsearch (const void*, void*, size_t*, size_t, int (*)(const void*, const void*))
+#ifndef XPG3
 function void remque (void*)
+#endif
 function {void*} tdelete (const void*, void**, int(*)(const void*, const void*))
 function {void*} tfind (const void*, void*const*, int(*)(const void*, const void*))
 function {void*} tsearch (const void*, void**, int(*)(const void*, const void*))

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

Summary of changes:
 ChangeLog                  |    7 +++++++
 conform/Makefile           |    1 -
 conform/data/search.h-data |    4 ++++
 3 files changed, 11 insertions(+), 1 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]