Skip to content

Commit

Permalink
Put an edge case into the mktime() tests
Browse files Browse the repository at this point in the history
  • Loading branch information
schwern committed Feb 13, 2010
1 parent 7608cbe commit 6ca9238
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions t/mktime64.t.c
Expand Up @@ -21,6 +21,8 @@ int main(void) {
mktime64_ok((Time64_T)-60*60*24*365*143);
mktime64_ok((Time64_T)60*60*24*365*433);
mktime64_ok((Time64_T)-60*60*24*365*433);
mktime64_ok((Time64_T)-2147483647);
mktime64_ok((Time64_T)2147483647);

/* Test timelocal64 alias to mktime64 */
time = 12345;
Expand Down

0 comments on commit 6ca9238

Please sign in to comment.