-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
test_preprocess.sh
executable file
·245 lines (212 loc) · 3.38 KB
/
test_preprocess.sh
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#!/bin/bash -e
function test_stdout {
input="$1"
expected_stdout="$2"
testname="$3"
printf "%s" "$expected_stdout" > expected.stdout
printf "%s" "$input" > testinput.c
cat testinput.c | ./compilium -E --target-os `uname` > out.stdout || { \
echo "$input" > failcase.txt; \
echo "Compilation failed."; \
exit 1; }
diff -y expected.stdout out.stdout \
&& printf "\nPASS $testname\n" \
|| { printf "\nFAIL $testname: stdout diff\n"; exit 1; }
}
test_stdout \
"`cat << EOS
#define MACRO_DEFINED
#ifdef MACRO_DEFINED
int this_should_be_visible_1;
#else
int this_should_not_be_visible_1;
#endif
#ifdef MACRO_NOT_DEFINED
int this_should_not_be_visible_2;
#else
int this_should_be_visible_2;
#endif
int always_visible;
EOS
`" \
"`cat << EOS
int this_should_be_visible_1;
int this_should_be_visible_2;
int always_visible;
EOS
`" \
'ifdef nested case'
test_stdout \
"`cat << EOS
#define MACRO_DEFINED
#ifdef MACRO_DEFINED
int this_should_be_visible;
#ifdef MACRO_DEFINED
#ifdef MACRO_NOT_DEFINED
int this_is_not_visible;
#endif
int this_is_also_visible;
#endif
#endif
int always_visible;
EOS
`" \
"`cat << EOS
int this_should_be_visible;
int this_is_also_visible;
int always_visible;
EOS
`" \
'ifdef nested case'
test_stdout \
"`cat << EOS
#ifdef MACRO_NOT_DEFINED
int this_is_not_visible;
#endif
int always_visible;
EOS
`" \
"`cat << EOS
int always_visible;
EOS
`" \
'ifdef not defined case'
test_stdout \
"`cat << EOS
#define MACRO_DEFINED
#ifdef MACRO_DEFINED
int this_should_be_visible;
#endif
int always_visible;
EOS
`" \
"`cat << EOS
int this_should_be_visible;
int always_visible;
EOS
`" \
'ifdef defined case'
test_stdout \
"`cat << EOS
EOS
`" \
"`cat << EOS
EOS
`" \
'empty input becomes empty'
test_stdout \
"`cat << EOS
int one;
int two;
int three;
EOS
`" \
"`cat << EOS
int one;
int two;
int three;
EOS
`" \
'keep white spaces and new lines'
# 6.10.8.1 Mandatory macros - 1
# 5.1.1.2 Translation phases - 2
#
# $ printf 'one\\\n __LINE__ two' | clang -E -
# one 2 two
# $ printf 'one\n __LINE__ two' | clang -E -
# one
# 2 two
test_stdout \
"`cat << EOS
one\\\\
__LINE__ two
EOS
`" \
"`cat << EOS
one 2 two
EOS
`" \
'__LINE__ macro shows physical source line, not logical one.'
test_stdout \
"`cat << EOS
one
__LINE__ two
three__LINE__
four __LINE__ __LINE__
EOS
`" \
"`cat << EOS
one
2 two
three__LINE__
four 4 4
EOS
`" \
'__LINE__ macro'
test_stdout \
"`cat << EOS
#define hello "Hello, world!"
printf(hello);
EOS
`" \
"`cat << EOS
printf("Hello, world!");
EOS
`" \
'Simple macro replacement'
test_stdout \
"`cat << EOS
#define hello printf("Hello, world!")
hello;
#define EOF (-1)
EOF;
EOS
`" \
"`cat << EOS
printf("Hello, world!");
(-1);
EOS
`" \
'Simple macro replacement with multiple tokens'
test_stdout \
"`cat << EOS
#define hello
hello;
EOS
`" \
"`cat << EOS
;
EOS
`" \
'Simple macro replacement with zero tokens'
test_stdout \
"`cat << EOS
#define f0() printf("Zero")
#define f1(a) printf("One %d", a)
#define f2(a, b) printf("Two %d %d", a, b)
f0();
f1(1 + 1);
f2(1 + 1, 3);
EOS
`" \
"`cat << EOS
printf("Zero");
printf("One %d", 1 + 1);
printf("Two %d %d", 1 + 1, 3);
EOS
`" \
'Function-like macros'
test_stdout \
"`cat << EOS
#define f1(a) printf("One %s", #a)
#define f2(a, b) printf("Two %s %d", #a, b)
f1(1 + 1);
f2(1 + 1, 3);
EOS
`" \
"`cat << EOS
printf("One %s", "1 + 1");
printf("Two %s %d", "1 + 1", 3);
EOS
`" \
'Function-like macros with #expr macro'