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
|
/*------------------------------------------------------------------
* test_printf_s
* File 'printf_s.c'
* Lines executed:81.25% of 16
*
*------------------------------------------------------------------
*/
#include "test_private.h"
#include "safe_str_lib.h"
#include <unistd.h>
#ifdef HAVE_PRINTF_S
#define HAVE_NATIVE 1
#else
#define HAVE_NATIVE 0
#endif
#include "test_msvcrt.h"
#define LEN (128)
static char str1[LEN];
static char str2[LEN];
int test_printf_s(void);
int test_printf_s(void) {
errno_t rc;
int32_t ind;
int errs = 0;
/*--------------------------------------------------*/
print_msvcrt(use_msvcrt);
#ifndef HAVE_CT_BOS_OVR
EXPECT_BOS("empty fmt")
rc = printf_s(NULL);
init_msvcrt(rc == -ESNULLP, &use_msvcrt);
NEGERR_MSVC(ESNULLP, EINVAL);
#endif
/*--------------------------------------------------*/
GCC_DIAG_IGNORE(-Wformat-zero-length)
rc = printf_s("");
GCC_DIAG_RESTORE
NEGERR(EOK)
/* TODO
rc = printf_s("%s", NULL);
NEGERR(ESNULLP)
*/
/*--------------------------------------------------*/
str1[0] = '\0';
GCC_DIAG_IGNORE(-Wformat)
rc = printf_s("%s%n\n", str1, &ind);
GCC_DIAG_RESTORE
NEGERR(EINVAL)
/*--------------------------------------------------*/
rc = printf_s("%s%%n\n", str1);
if (rc < 0) {
printf("Failed to open stdout for write: %s\n", strerror(errno));
return errs;
}
ERR(3)
rc = printf_s("%%n\n");
ERR(3);
/*--------------------------------------------------*/
strcpy(str1, "12");
strcpy(str2, "34");
rc = printf_s("%s%s", str1, str2);
ERR(4)
/*--------------------------------------------------*/
#if 0
/* 0x7fffffff + 1 >INT_MAX */
rc = printf_s("\n%2147483648d\n", INT_MAX);
ANYERR();
#if defined(__GLIBC__)
ERRNO(EOVERFLOW);
#endif
/* this segfaults under darwin */
rc = printf_s("%s\n", L'\xd834df01');
ANYERR();
rc = printf_s("%*9$d", 0);
ANYERR();
#endif
/*--------------------------------------------------*/
return (errs);
}
int main(void) { return (test_printf_s()); }
|