aboutsummaryrefslogtreecommitdiff
path: root/tests/ipp.at
blob: 825674f2e78fc408505c3a7802c7b78cc7932b7b (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
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
# This file is part of grecs  -*- Autotest -*-
# Copyright (C) 2021 Sergey Poznyakoff
#
# Grecs is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# Grecs is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Grecs.  If not, see <http://www.gnu.org/licenses/>.
AT_SETUP([Internal preprocessor])

AT_CHECK([
AT_DATA([input],
[begin
// Inline comment
# Another online comment
statement
/* Multiline
   comments
   span several
   lines */
end
inline /* 1 */ C/* 2 */style /* text */comments
])
gcfpp input
],
[0],
[#line 1 "input"
begin
#line 4 "input"
statement

#line 9 "input"
end
inline  Cstyle comments
])

AT_CHECK([
AT_DATA([input],
[first
#line 20 "i.cf"
/*
-
*/
line
])
gcfpp input
],
[0],
[#line 1 "input"
first
#line 20 "i.cf"

#line 23 "i.cf"
line
])

AT_CHECK([
AT_DATA([input],
[#abend "Failed"
tez
])
gcfpp input
],
[0],
[],
[input:1.1-16: Failed
])

#
#
#
AT_CHECK([
AT_DATA([input],
[Ut enim ad minim
#include "a"
veniam, quis
adipisci
#include "b"
commodo consequat
eo finem
])
AT_DATA([a],[exercitation
ullamco
])
AT_DATA([b],[labori nisi
ut aliquip ex
ea
])
gcfpp input
],
[0],
[#line 1 "input"
Ut enim ad minim
#line 1 "./a"
exercitation
ullamco
#line 3 "input"
veniam, quis
adipisci
#line 1 "./b"
labori nisi
ut aliquip ex
ea
#line 6 "input"
commodo consequat
eo finem
])

#
#
#
AT_CHECK([
AT_DATA([a.in],
[Duis aute irure
#include_once "a.d/*.in"
est laborum.
])

mkdir a.d
AT_DATA([a.d/b.in],
[dolor in
# reprehenderit
# in
voluptate
])

AT_DATA([a.d/c.in],
[velit esse
cupidatat non proident,
])

AT_DATA([a.d/d.in],
[sunt in culpa
#warning "values of B give rise to dom"
qui officia
deserunt
])

gcfpp a.in
],
[0],
[#line 1 "a.in"
Duis aute irure
#line 1 "a.d/b.in"
dolor in
#line 4 "a.d/b.in"
voluptate
#line 1 "a.d/c.in"
velit esse
cupidatat non proident,
#line 1 "a.d/d.in"
sunt in culpa
qui officia
deserunt
#line 3 "a.in"
est laborum.
],
[a.d/d.in:2.1-40: warning: values of B give rise to dom
])

AT_CLEANUP

Return to:

Send suggestions and report system problems to the System administrator.