1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/*------------------------------------------------------------------
* test_ctime_s
* File 'os/ctime_s.c'
* Lines executed:59.52% of 42
*
*------------------------------------------------------------------
*/
#include "test_private.h"
#include "safe_lib.h"
#if defined(HAVE_CTIME_S) || defined(HAVE_ASCTIME_S)
#define HAVE_NATIVE 1
#else
#define HAVE_NATIVE 0
#endif
#include "test_msvcrt.h"
#define LEN (128)
static char str1[LEN];
int test_ctime_s(void);
int test_ctime_s(void) {
errno_t rc;
int errs = 0;
time_t timer;
timer = time(NULL);
/*--------------------------------------------------*/
/* even static we will use the native forceinline ctime_s */
#if defined(_WIN32) && (HAVE_NATIVE)
use_msvcrt = true;
#endif
print_msvcrt(use_msvcrt);
#ifndef HAVE_CT_BOS_OVR
EXPECT_BOS("empty dest")
rc = ctime_s(NULL, LEN, &timer);
init_msvcrt(rc == ESNULLP, &use_msvcrt);
ERR_MSVC(ESNULLP, EINVAL);
EXPECT_BOS("empty timer")
rc = ctime_s(str1, LEN, NULL);
ERR_MSVC(ESNULLP, EINVAL);
/*--------------------------------------------------*/
EXPECT_BOS("empty dest or dmax") EXPECT_BOS("dmax underflow")
rc = ctime_s(str1, 0, &timer);
ERR_MSVC(ESLEMIN, EINVAL);
EXPECT_BOS("dmax underflow")
rc = ctime_s(str1, 25, &timer);
ERR_MSVC(ESLEMIN, EINVAL);
EXPECT_BOS("dest overflow")
rc = ctime_s(str1, RSIZE_MAX_STR + 1, &timer);
ERR_MSVC(ESLEMAX, 0);
#endif
/*--------------------------------------------------*/
timer = 0;
rc = ctime_s(str1, LEN, &timer);
if (use_msvcrt && rc == EINVAL)
;
else {
ERR(EOK);
}
timer = -1;
rc = ctime_s(str1, LEN, &timer);
ERR_MSVC(ESLEMIN, EINVAL);
{
struct tm *tm = gmtime(&timer);
if (!tm) {
printf("gmtime() failed\n");
return errs + 1;
}
/* memset(tm, 0, sizeof(struct tm)); */
#if SIZEOF_TIME_T < 8
/* year 10000, ie 313392063599L would overflow on 32bit */
timer = MAX_TIME_T_STR;
#else
tm->tm_year = 10000;
timer = mktime(tm);
debug_printf("year 10000 = %ld\n", (long)timer);
if (timer != -1)
timer++;
#endif
#ifdef BSD_OR_DARWIN_LIKE
/* leak needs to be supressed, darwin valgrind bug */
#endif
}
/* eg. 313360441200L */
rc = ctime_s(str1, LEN, &timer);
if (timer == -1) {
ERR_MSVC(ESLEMIN, EINVAL);
} else {
ERR_MSVC(ESLEMAX, 0);
}
/*
#ifndef HAVE_MINGW32
ERR(ESLEMAX);
#else
ERR(0);
#endif
*/
/*--------------------------------------------------*/
return (errs);
}
int main(void) { return (test_ctime_s()); }
|