1 | // Licensed to the .NET Foundation under one or more agreements. |
2 | // The .NET Foundation licenses this file to you under the MIT license. |
3 | // See the LICENSE file in the project root for more information. |
4 | |
5 | /*============================================================================ |
6 | ** |
7 | ** Source: test13.c (fprintf) |
8 | ** |
9 | ** Purpose: Tests the (uppercase) hexadecimal specifier (%X). |
10 | ** This test is modeled after the fprintf series. |
11 | ** |
12 | ** |
13 | **==========================================================================*/ |
14 | |
15 | #include <palsuite.h> |
16 | #include "../fprintf.h" |
17 | |
18 | /* |
19 | * Depends on memcmp, strlen, fopen, fseek and fgets. |
20 | */ |
21 | |
22 | int __cdecl main(int argc, char *argv[]) |
23 | { |
24 | int neg = -42; |
25 | int pos = 0x1234AB; |
26 | INT64 l = I64(0x1234567887654321); |
27 | |
28 | if (PAL_Initialize(argc, argv) != 0) |
29 | return(FAIL); |
30 | |
31 | DoNumTest("foo %X" , pos, "foo 1234AB" ); |
32 | DoNumTest("foo %lX" , pos, "foo 1234AB" ); |
33 | DoNumTest("foo %hX" , pos, "foo 34AB" ); |
34 | DoNumTest("foo %LX" , pos, "foo 1234AB" ); |
35 | DoI64Test("foo %I64X" , l, "0x1234567887654321" , |
36 | "foo 1234567887654321" , "foo 0x1234567887654321" ); |
37 | DoNumTest("foo %7X" , pos, "foo 1234AB" ); |
38 | DoNumTest("foo %-7X" , pos, "foo 1234AB " ); |
39 | DoNumTest("foo %.1X" , pos, "foo 1234AB" ); |
40 | DoNumTest("foo %.7X" , pos, "foo 01234AB" ); |
41 | DoNumTest("foo %07X" , pos, "foo 01234AB" ); |
42 | DoNumTest("foo %#X" , pos, "foo 0X1234AB" ); |
43 | DoNumTest("foo %+X" , pos, "foo 1234AB" ); |
44 | DoNumTest("foo % X" , pos, "foo 1234AB" ); |
45 | DoNumTest("foo %+X" , neg, "foo FFFFFFD6" ); |
46 | DoNumTest("foo % X" , neg, "foo FFFFFFD6" ); |
47 | |
48 | PAL_Terminate(); |
49 | return PASS; |
50 | } |
51 | |