Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F110218150
D38177.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D38177.diff
View Options
diff --git a/contrib/netbsd-tests/lib/libc/time/t_mktime.c b/contrib/netbsd-tests/lib/libc/time/t_mktime.c
--- a/contrib/netbsd-tests/lib/libc/time/t_mktime.c
+++ b/contrib/netbsd-tests/lib/libc/time/t_mktime.c
@@ -1,4 +1,4 @@
-/* $NetBSD: t_mktime.c,v 1.5 2012/03/18 07:33:58 jruoho Exp $ */
+/* $NetBSD: t_mktime.c,v 1.6 2017/10/27 00:55:27 kre Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -64,18 +64,16 @@
ATF_TC_BODY(mktime_negyear, tc)
{
-#ifdef __FreeBSD__
- atf_tc_expect_fail("needs work");
-#endif
struct tm tms;
time_t t;
(void)memset(&tms, 0, sizeof(tms));
- tms.tm_year = ~0;
+ tms.tm_year = -1;
+ tms.tm_mday = 1;
errno = 0;
t = mktime(&tms);
- ATF_REQUIRE_ERRNO(0, t != (time_t)-1);
+ ATF_REQUIRE(t != (time_t)-1);
}
ATF_TC(timegm_epoch);
@@ -95,7 +93,7 @@
tms.tm_year = 1970 - 1900;
tms.tm_mday = 1;
t = timegm(&tms);
- ATF_REQUIRE_ERRNO(0, t == (time_t)0);
+ ATF_REQUIRE(t == (time_t)0);
/* one second after midnight on 1 Jan 1970 */
(void)memset(&tms, 0, sizeof(tms));
@@ -104,7 +102,7 @@
tms.tm_mday = 1;
tms.tm_sec = 1;
t = timegm(&tms);
- ATF_REQUIRE_ERRNO(0, t == (time_t)1);
+ ATF_REQUIRE(t == (time_t)1);
/*
* 1969-12-31 23:59:59 = one second before the epoch.
@@ -119,7 +117,8 @@
tms.tm_min = 59;
tms.tm_sec = 59;
t = timegm(&tms);
- ATF_REQUIRE_ERRNO(0, t == (time_t)-1);
+ ATF_REQUIRE(t == (time_t)-1);
+ /* ATF_REQUIRE(errno == 0); does not work, errno is kept clear */
/*
* Another way of getting one second before the epoch:
@@ -131,7 +130,7 @@
tms.tm_mday = 1;
tms.tm_sec = -1;
t = timegm(&tms);
- ATF_REQUIRE_ERRNO(0, t == (time_t)-1);
+ ATF_REQUIRE(t == (time_t)-1);
/*
* Two seconds before the epoch.
@@ -142,7 +141,7 @@
tms.tm_mday = 1;
tms.tm_sec = -2;
t = timegm(&tms);
- ATF_REQUIRE_ERRNO(0, t == (time_t)-2);
+ ATF_REQUIRE(t == (time_t)-2);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Feb 16, 6:39 AM (14 h, 32 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16670313
Default Alt Text
D38177.diff (1 KB)
Attached To
Mode
D38177: libc: Update mktime(3) / timegm(3) tests.
Attached
Detach File
Event Timeline
Log In to Comment