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-319-g567c710


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  567c710bcad634bc94a21f00b9e1c24ca9f9f57c (commit)
      from  7f8843c92a6b28f8184ed13705a8de54206f759e (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=567c710bcad634bc94a21f00b9e1c24ca9f9f57c

commit 567c710bcad634bc94a21f00b9e1c24ca9f9f57c
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Thu May 12 20:47:15 2016 +0000

    conformtest: Correct time.h XPG3 expectations.
    
    This patch corrects spurious conformtest expectations of getdate and
    getdate_err for XPG3.  (This is not based on a full review of the
    expectations, so there may be other issues where the header and tests
    agree but are both incorrect.)
    
    Tested for x86_64 and x86.
    
    	* conform/data/time.h-data (getdate_err): Do not expect for
    	[XPG3].
    	(getdate): Likewise.
    	* conform/Makefile (test-xfail-XPG3/time.h/conform): Remove
    	variable.

diff --git a/ChangeLog b/ChangeLog
index 8a3bb1f..78ac7fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2016-05-12  Joseph Myers  <joseph@codesourcery.com>
 
+	* conform/data/time.h-data (getdate_err): Do not expect for
+	[XPG3].
+	(getdate): Likewise.
+	* conform/Makefile (test-xfail-XPG3/time.h/conform): Remove
+	variable.
+
 	* conform/data/unistd.h-data (F_LOCK): Do not expect for [XPG3].
 	(F_ULOCK): Likewise.
 	(F_TEST): Likewise.
diff --git a/conform/Makefile b/conform/Makefile
index 9aa7955..b46dc42 100644
--- a/conform/Makefile
+++ b/conform/Makefile
@@ -171,7 +171,6 @@ 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-XPG3/time.h/conform = yes
 test-xfail-XPG4/arpa/inet.h/conform = yes
 test-xfail-XPG4/netdb.h/conform = yes
 test-xfail-XPG4/netinet/in.h/conform = yes
diff --git a/conform/data/time.h-data b/conform/data/time.h-data
index ddd9a07..9fbe54e 100644
--- a/conform/data/time.h-data
+++ b/conform/data/time.h-data
@@ -72,7 +72,7 @@ type locale_t
 tag {struct sigevent}
 # endif
 
-# if !defined POSIX && !defined POSIX2008
+# if !defined XPG3 && !defined POSIX && !defined POSIX2008
 variable int getdate_err
 # endif
 
@@ -91,7 +91,7 @@ function int clock_nanosleep (clockid_t, int, const struct timespec*, struct tim
 function int clock_settime (clockid_t, const struct timespec*)
 #endif
 function {char*} ctime_r (const time_t*, char*)
-# if !defined POSIX && !defined POSIX2008
+# if !defined XPG3 && !defined POSIX && !defined POSIX2008
 function {struct tm*} getdate (const char*)
 # endif
 function {struct tm*} gmtime_r (const time_t*, struct tm*)

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

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