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
|
/* Test for the long double variants of *scanf functions.
Copyright (C) 2019 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
<http://www.gnu.org/licenses/>. */
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <wchar.h>
#include <support/check.h>
#define CLEAR \
va_start (args, format); \
ld = va_arg (args, long double *); \
*ld = 0; \
va_end (args);
#define CLEAR_VALUE value = 0;
#define CHECK \
va_start (args, format); \
ld = va_arg (args, long double *); \
va_end (args); \
if (*ld == -1.0L) \
printf ("OK"); \
else \
printf ("ERROR (%.60Lf)", *ld); \
printf ("\n");
#define CHECK_VALUE \
if (value == -1.0L) \
printf ("OK"); \
else \
printf ("ERROR (%.60Lf)", value); \
printf ("\n");
static void
do_test_call (FILE *stream, CHAR *string, const CHAR *format, ...)
{
long double value;
long double *ld;
va_list args;
CLEAR_VALUE
printf ("fscanf: ");
FSCANF (stream, format, &value);
CHECK_VALUE
CLEAR_VALUE
printf ("scanf: ");
SCANF (format, &value);
CHECK_VALUE
CLEAR_VALUE
printf ("sscanf: ");
SSCANF (string, format, &value);
CHECK_VALUE
CLEAR
printf ("vfscanf: ");
va_start (args, format);
VFSCANF (stream, format, args);
va_end (args);
CHECK
CLEAR
printf ("vscanf: ");
va_start (args, format);
VSCANF (format, args);
va_end (args);
CHECK
CLEAR
printf ("vsscanf: ");
va_start (args, format);
VSSCANF (string, format, args);
va_end (args);
CHECK
}
static int
do_test (void)
{
CHAR string[256];
long double ld;
/* Scan in decimal notation. */
STRCPY (string,
L ("-1.0\n")
L ("-1.0\n") );
do_test_call (stdin, string, L("%Lf"), &ld);
/* Scan in hexadecimal notation. */
STRCPY (string,
L ("-0x1.0p+0\n")
L ("-0x1.0p+0\n") );
do_test_call (stdin, string, L("%La"), &ld);
return 0;
}
#include <support/test-driver.c>
|