aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/110.sh
blob: 4d487529901fc7601ae39b8281d2f007ea673b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cat <<'EOF' > expected
main.c:1: cannot open include file: "hoge.h"
EOF

test_compile_error <<'EOF'
#include "hoge.h"
EOF

cat <<'EOF' > expected
main.c:1: cannot resolve include file name: <hoge.h>
EOF

test_compile_error <<'EOF'
#include <hoge.h>
EOF