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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
/* Test for the long double variants of *printf functions.
Copyright (C) 2019-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <support/capture_subprocess.h>
#include <support/check.h>
static void
do_test_call_varg (FILE *stream, const char *format, ...)
{
char *buffer = NULL;
char string[128];
va_list args;
int ret;
printf ("%15s", "vasprintf: ");
va_start (args, format);
ret = vasprintf (&buffer, format, args);
va_end (args);
if (ret == -1 || buffer == NULL)
printf ("Error using vasprintf\n");
else
{
printf ("%s", buffer);
free (buffer);
}
printf ("\n");
printf ("%15s", "vdprintf: ");
va_start (args, format);
vdprintf (fileno (stream), format, args);
va_end (args);
printf ("\n");
printf ("%15s", "vfprintf: ");
va_start (args, format);
vfprintf (stream, format, args);
va_end (args);
printf ("\n");
printf ("%15s", "vprintf: ");
va_start (args, format);
vprintf (format, args);
va_end (args);
printf ("\n");
printf ("%15s", "vsnprintf: ");
va_start (args, format);
vsnprintf (string, 127, format, args);
va_end (args);
printf ("%s", string);
printf ("\n");
printf ("%15s", "vsprintf: ");
va_start (args, format);
vsprintf (string, format, args);
va_end (args);
printf ("%s", string);
printf ("\n");
}
static void
do_test_call_rarg (FILE *stream, const char *format, long double ld, double d)
{
char *buffer = NULL;
char string[128];
int ret;
printf ("%15s", "asprintf: ");
ret = asprintf (&buffer, format, ld, d);
if (ret == -1 || buffer == NULL)
printf ("Error using asprintf\n");
else
{
printf ("%s", buffer);
free (buffer);
}
printf ("\n");
printf ("%15s", "dprintf: ");
dprintf (fileno (stream), format, ld, d);
printf ("\n");
printf ("%15s", "fprintf: ");
fprintf (stream, format, ld, d);
printf ("\n");
printf ("%15s", "printf: ");
printf (format, ld, d);
printf ("\n");
printf ("%15s", "snprintf: ");
snprintf (string, 127, format, ld, d);
printf ("%s", string);
printf ("\n");
printf ("%15s", "sprintf: ");
sprintf (string, format, ld, d);
printf ("%s", string);
printf ("\n");
}
static void
do_test_call (void)
{
long double ld = -1;
double d = -1;
/* Print in decimal notation. */
do_test_call_rarg (stdout, "%.10Lf, %.10f", ld, d);
do_test_call_varg (stdout, "%.10Lf, %.10f", ld, d);
/* Print in hexadecimal notation. */
do_test_call_rarg (stdout, "%.10La, %.10a", ld, d);
do_test_call_varg (stdout, "%.10La, %.10a", ld, d);
/* Test positional parameters. */
do_test_call_varg (stdout, "%3$Lf, %2$Lf, %1$f",
(double) 1, (long double) 2, (long double) 3);
}
static int
do_test (void)
{
struct support_capture_subprocess result;
result = support_capture_subprocess ((void *) &do_test_call, NULL);
/* Compare against the expected output. */
const char *expected =
" asprintf: -1.0000000000, -1.0000000000\n"
" dprintf: -1.0000000000, -1.0000000000\n"
" fprintf: -1.0000000000, -1.0000000000\n"
" printf: -1.0000000000, -1.0000000000\n"
" snprintf: -1.0000000000, -1.0000000000\n"
" sprintf: -1.0000000000, -1.0000000000\n"
" vasprintf: -1.0000000000, -1.0000000000\n"
" vdprintf: -1.0000000000, -1.0000000000\n"
" vfprintf: -1.0000000000, -1.0000000000\n"
" vprintf: -1.0000000000, -1.0000000000\n"
" vsnprintf: -1.0000000000, -1.0000000000\n"
" vsprintf: -1.0000000000, -1.0000000000\n"
" asprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" dprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" fprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" printf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" snprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" sprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" vasprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" vdprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" vfprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" vprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" vsnprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" vsprintf: -0x1.0000000000p+0, -0x1.0000000000p+0\n"
" vasprintf: 3.000000, 2.000000, 1.000000\n"
" vdprintf: 3.000000, 2.000000, 1.000000\n"
" vfprintf: 3.000000, 2.000000, 1.000000\n"
" vprintf: 3.000000, 2.000000, 1.000000\n"
" vsnprintf: 3.000000, 2.000000, 1.000000\n"
" vsprintf: 3.000000, 2.000000, 1.000000\n";
TEST_COMPARE_STRING (expected, result.out.buffer);
return 0;
}
#include <support/test-driver.c>
|