diff options
author | Albert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr> | 2018-10-24 14:43:06 +0200 |
---|---|---|
committer | Albert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr> | 2018-10-27 17:18:02 +0200 |
commit | 91ac988a6b8662cd1e13770cdc550c2609c42178 (patch) | |
tree | afd50335d34eb1affa5c0a1c5a19db2e7c7a1ef0 /time/bug-mktime4.c | |
parent | e5b8756dc2355c315247b710da8d50d48b7a9728 (diff) | |
download | glibc-aaribaud/bugzilla/23789/v2.tar glibc-aaribaud/bugzilla/23789/v2.tar.gz glibc-aaribaud/bugzilla/23789/v2.tar.bz2 glibc-aaribaud/bugzilla/23789/v2.zip |
Ensure mktime sets errno on error (bug 23789)aaribaud/bugzilla/23789/v2
Posix mandates that mktime set errno to EOVERFLOW
on error, that it, upon retuning -1, but the glibc
mktime does not so far on 32-bit architectures.
Fix this and add a test to prevent regressions.
The test was run through 'make check' on i686-linux-gnu,
then the fix was added and 'make check' run again.
* time/mktime.c
(mktime): Set errno to EOVERFLOW on error.
* time/bug-mktime4.c: New file.
* time/Makefile: Add bug-mktime4.
Diffstat (limited to 'time/bug-mktime4.c')
-rw-r--r-- | time/bug-mktime4.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/time/bug-mktime4.c b/time/bug-mktime4.c new file mode 100644 index 0000000000..dd1e0c76bf --- /dev/null +++ b/time/bug-mktime4.c @@ -0,0 +1,28 @@ +#include <time.h> +#include <errno.h> +#include <limits.h> +#include <stdio.h> +#include <string.h> + +static int +do_test (void) +{ + struct tm tm = { .tm_year = INT_MIN, .tm_mon = INT_MIN, .tm_mday = INT_MIN, + .tm_hour = INT_MIN, .tm_min = INT_MIN, .tm_sec = INT_MIN }; + errno = 0; + time_t tt = mktime (&tm); + if (tt != -1) + { + printf ("mktime() should have returned -1, returned %ld\n", (long int) tt); + return 1; + } + if (errno != EOVERFLOW) + { + printf ("mktime() returned -1, errno should be %d (EOVERFLOW) but is %d (%s)\n", EOVERFLOW, errno, strerror(errno)); + return 1; + } + return 0; +} + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |