1 /* This file is part of the GNU C Library.
2 Copyright (C) 2012 Free Software Foundation, Inc.
3 Contributed by Marek Polacek <polacek@redhat.com>, 2012.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
21 /* Prototype for our test function. */
22 static int do_test (void);
27 #ifndef NO_LONG_DOUBLE
29 const long double x
= 24.5;
31 swprintf (a
, sizeof (a
), L
"%La\n", x
);
33 swprintf (A
, sizeof (A
) / sizeof (A
[0]), L
"%LA\n", x
);
35 /* Here wprintf can return four valid variants. We must accept all
37 result
|= (wmemcmp (a
, L
"0xc.4p+1", 8) == 0
38 && wmemcmp (A
, L
"0XC.4P+1", 8) == 0);
39 result
|= (wmemcmp (a
, L
"0x3.1p+3", 8) == 0
40 && wmemcmp (A
, L
"0X3.1P+3", 8) == 0);
41 result
|= (wmemcmp (a
, L
"0x6.2p+2", 8) == 0
42 && wmemcmp (A
, L
"0X6.2P+2", 8) == 0);
43 result
|= (wmemcmp (a
, L
"0x1.88p+4", 8) == 0
44 && wmemcmp (A
, L
"0X1.88P+4", 8) == 0);
52 #define TEST_FUNCTION do_test ()
53 #include "../test-skeleton.c"