aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/059.sh
blob: 80a6e10172342eccd4f82a30d1c592dfd9cec95c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set -e

cat <<'EOF' > expected
main.c:1: expected '{', but got '}'
EOF

bash ../../test_compile_error.sh <<'EOF'
int main() }
EOF

cat <<'EOF' > expected
main.c:1: expected '{', but got '123 (<integer>)'
EOF

bash ../../test_compile_error.sh <<'EOF'
int main() 123
EOF