aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/019.sh
blob: 33b2e7d06c24ff352d32cbc0665ffd07df0a1378 (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
touch expected
test_diff <<'EOF'
int printf();

int main() {
    printf("");
    return 0;
}
EOF

cat <<'EOF' > expected
Hello, World!
EOF
test_diff <<'EOF'
int printf();

int main() {
    printf("Hello, World!\n");
    return 0;
}
EOF

cat <<'EOF' > expected
"Hello, World!"
EOF
test_diff <<'EOF'
int printf();

int main() {
    printf("\"Hello, World!\"\n");
    return 0;
}
EOF