diff options
author | DJ Delorie <dj@redhat.com> | 2019-03-27 17:44:51 -0400 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2019-04-01 14:19:16 -0400 |
commit | e0e4c321c3145b6ac0e8f6e894f87790cf9437ce (patch) | |
tree | 097f4b5ebbd34f57a945f24e6182b96d104b3165 /time/Makefile | |
parent | 993e3107af67edefcfc79a62ae55f7b98aa5151e (diff) | |
download | glibc-e0e4c321c3145b6ac0e8f6e894f87790cf9437ce.zip glibc-e0e4c321c3145b6ac0e8f6e894f87790cf9437ce.tar.gz glibc-e0e4c321c3145b6ac0e8f6e894f87790cf9437ce.tar.bz2 |
Fix strptime era handling, add more strftime tests [BZ #24394]
Test the transition points between all the currently listed Japanese
era name changes. This includes testing the transition between the
first year date and the second year date. This test will help test
the upcoming Japanese era name change.
Also fixes a fencepost error where the era name isn't properly parsed
by strptime in the last (partial) year of the era.
Example: if an era change happens in Feb 1990, and again in Aug 1995,
that's 5.5 years long, but the 0.5 year wasn't accounted for.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'time/Makefile')
-rw-r--r-- | time/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/time/Makefile b/time/Makefile index 5c6304e..2ca2063 100644 --- a/time/Makefile +++ b/time/Makefile @@ -43,7 +43,7 @@ tests := test_time clocktest tst-posixtz tst-strptime tst_wcsftime \ tst-getdate tst-mktime tst-mktime2 tst-ftime_l tst-strftime \ tst-mktime3 tst-strptime2 bug-asctime bug-asctime_r bug-mktime1 \ tst-strptime3 bug-getdate1 tst-strptime-whitespace tst-ftime \ - tst-tzname tst-y2039 bug-mktime4 tst-strftime2 + tst-tzname tst-y2039 bug-mktime4 tst-strftime2 tst-strftime3 include ../Rules |