Page MenuHomeFreeBSD

libc: Update mktime(3) / timegm(3) tests.
ClosedPublic

Authored by des on Jan 24 2023, 8:34 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 14 2024, 12:38 AM
Unknown Object (File)
Mar 14 2024, 12:37 AM
Unknown Object (File)
Mar 14 2024, 12:37 AM
Unknown Object (File)
Mar 10 2024, 6:24 PM
Unknown Object (File)
Dec 22 2023, 11:14 PM
Unknown Object (File)
Dec 12 2023, 3:11 PM
Unknown Object (File)
Aug 29 2023, 10:12 PM
Unknown Object (File)
Jul 9 2023, 3:17 AM
Subscribers

Details

Summary

Sponsored by: Klara, Inc.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

des requested review of this revision.Jan 24 2023, 8:34 AM
markj added inline comments.
contrib/netbsd-tests/lib/libc/time/t_mktime.c
76

Presumably we shouldn't rely on errno being clear if the call was successful? Where does it get set?

We should probably stop clearing errno above too then?

contrib/netbsd-tests/lib/libc/time/t_mktime.c
76

Presumably we shouldn't rely on errno being clear if the call was successful?

Neither C nor POSIX say anything about mktime() setting errno. It just so happens that a previous version of tzcode left errno untouched when mktime() was successful, NetBSD incorrectly assumed that this was mandated and added a test for it, and we trusted them and imported that test. The current version of tzcode almost always sets errno to EOVERFLOW on 64-bit platforms, even when successful, so the test fails.

We should probably stop clearing errno above too then?

This is contrib code, I don't want to make gratuitous changes.

ATF_REQUIRE_EQ is generally better because it emits the LHS and RHS of the expression in the check, whereas ATF_REQUIRE omits this information (it’s about as good as “assert a == b”).

This revision is now accepted and ready to land.Jan 24 2023, 8:07 PM
contrib/netbsd-tests/lib/libc/time/t_mktime.c
76

We should file a NetBSD PR, so our fix can be picked up in the next update.

This revision was automatically updated to reflect the committed changes.
des marked 2 inline comments as done.Jan 25 2023, 6:32 AM
des added inline comments.
contrib/netbsd-tests/lib/libc/time/t_mktime.c
76

There is no “our fix”. This commit reverts the test to the latest upstream revision.

des marked an inline comment as done.Jan 25 2023, 6:33 AM