summaryrefslogtreecommitdiffstats
path: root/nsprpub/pr/tests/prfz.c
blob: 7179dbecdbee6c9507de0c9c0f75adc86c9e82c5 (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/*
 * This is a simple test of the PR_fprintf() function for size_t formats.
 */

#include "prprf.h"
#include <sys/types.h>
#include <limits.h>
#include <string.h>
#include <stdint.h>

int
main(int argc, char **argv)
{
    char buffer[128];

    size_t  unsigned_small  = 266;
#ifdef XP_UNIX
    ssize_t signed_small_p  = 943;
    ssize_t signed_small_n  = -1;
#endif
    size_t  unsigned_max    = SIZE_MAX;
    size_t  unsigned_min    = 0;
#ifdef XP_UNIX
    ssize_t signed_max      = SSIZE_MAX;
#endif

    printf("Test: unsigned small '%%zu' : ");
    PR_snprintf(buffer, sizeof(buffer), "%zu", unsigned_small);
    if (strncmp(buffer, "266", sizeof(buffer)) != 0) {
        printf("Failed, got '%s'\n", buffer);
        return -1;
    }
    printf("OK\n");

#ifdef XP_UNIX
    printf("Test: signed small positive '%%zd' : ");
    PR_snprintf(buffer, sizeof(buffer), "%zd", signed_small_p);
    if (strncmp(buffer, "943", sizeof(buffer)) != 0) {
        printf("Failed, got '%s'\n", buffer);
        return -1;
    }
    printf("OK\n");

    printf("Test: signed small negative '%%zd' : ");
    PR_snprintf(buffer, sizeof(buffer), "%zd", signed_small_n);
    if (strncmp(buffer, "-1", sizeof(buffer)) != 0) {
        printf("Failed, got '%s'\n", buffer);
        return -1;
    }
    printf("OK\n");
#endif

    printf("Test: 0 '%%zu' : ");
    PR_snprintf(buffer, sizeof(buffer), "%zu", unsigned_min);
    if (strncmp(buffer, "0", sizeof(buffer)) != 0) {
        printf("Failed, got '%s'\n", buffer);
        return -1;
    }
    printf("OK\n");

    printf("Test: SIZE_MAX '%%zx' : ");
    PR_snprintf(buffer, sizeof(buffer), "%zx", unsigned_max);
    if (strspn(buffer, "f") != sizeof(size_t) * 2) {
        printf("Failed, got '%s'\n", buffer);
        return -1;
    }
    printf("OK\n");

#ifdef XP_UNIX
    printf("Test: SSIZE_MAX '%%zx' : ");
    PR_snprintf(buffer, sizeof(buffer), "%zx", signed_max);
    if (*buffer != '7' ||
        strspn(buffer + 1, "f") != sizeof(ssize_t) * 2 - 1) {
        printf("Failed, got '%s'\n", buffer);
        return -1;
    }
    printf("OK\n");
#endif

    return 0;
}