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: test10.c |
8 | ** |
9 | ** Purpose: Tests the octal specifier (%o). |
10 | ** This test is modeled after the sprintf series. |
11 | ** |
12 | ** |
13 | **==========================================================================*/ |
14 | |
15 | #include <palsuite.h> |
16 | #include "../fwprintf.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 = 42; |
26 | INT64 l = 42; |
27 | |
28 | if (PAL_Initialize(argc, argv) != 0) |
29 | { |
30 | return(FAIL); |
31 | } |
32 | |
33 | DoNumTest(convert("foo %o" ), pos, "foo 52" ); |
34 | DoNumTest(convert("foo %lo" ), 0xFFFF, "foo 177777" ); |
35 | DoNumTest(convert("foo %ho" ), 0xFFFF, "foo 177777" ); |
36 | DoNumTest(convert("foo %Lo" ), pos, "foo 52" ); |
37 | DoI64Test(convert("foo %I64o" ), l, "42" , "foo 52" , "foo 52" ); |
38 | DoNumTest(convert("foo %3o" ), pos, "foo 52" ); |
39 | DoNumTest(convert("foo %-3o" ), pos, "foo 52 " ); |
40 | DoNumTest(convert("foo %.1o" ), pos, "foo 52" ); |
41 | DoNumTest(convert("foo %.3o" ), pos, "foo 052" ); |
42 | DoNumTest(convert("foo %03o" ), pos, "foo 052" ); |
43 | DoNumTest(convert("foo %#o" ), pos, "foo 052" ); |
44 | DoNumTest(convert("foo %+o" ), pos, "foo 52" ); |
45 | DoNumTest(convert("foo % o" ), pos, "foo 52" ); |
46 | DoNumTest(convert("foo %+o" ), neg, "foo 37777777726" ); |
47 | DoNumTest(convert("foo % o" ), neg, "foo 37777777726" ); |
48 | |
49 | PAL_Terminate(); |
50 | return PASS; |
51 | } |
52 | |