aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_char_literals.sh
blob: 3d1bff3f4ef6f9fa5460f823d853d24897a2573a (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
cat <<'EOF' > expected
97 48
92 39
10
EOF
test_diff <<'EOF'
int printf();

int main() {
    printf("%d %d\n", 'a', '0');
    printf("%d %d\n", '\\', '\'');
    printf("%d\n", '\n');
    return 0;
}
EOF

cat <<'EOF' > expected
39
34
63
92
7
8
12
10
13
9
11
EOF
test_diff <<'EOF'
int printf();

int main() {
    printf("%d\n", '\'');
    printf("%d\n", '\"');
    printf("%d\n", '\?');
    printf("%d\n", '\\');
    printf("%d\n", '\a');
    printf("%d\n", '\b');
    printf("%d\n", '\f');
    printf("%d\n", '\n');
    printf("%d\n", '\r');
    printf("%d\n", '\t');
    printf("%d\n", '\v');
    return 0;
}
EOF

cat <<'EOF' > expected
0
EOF
test_diff <<'EOF'
int printf();

int main() {
    printf("%d\n", '\0');
}
EOF