Mercurial > ~dholland > hg > tradcpp > index.cgi
annotate tests/t37.c @ 203:3a25180d3a5c
Abort on line numbering or column numbering overflow.
Line numbers are limited to values that fit in "unsigned int". Also
reject input lines longer than 2^32-1 characters. It seems reasonable
to presume that any input that violates these constraints is someone
screwing around and not a serious attempt to compile or preprocess
anything useful. Done in response to n2129, but without getting into
any of the silliness found there.
author | David A. Holland |
---|---|
date | Tue, 01 Aug 2017 14:51:04 -0400 (2017-08-01) |
parents | 15f51ed08ecf |
children |
rev | line source |
---|---|
146
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
1 #define BC //**/* |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
2 #define EC */**// |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
3 |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
4 BC |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
5 comment? |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
6 EC |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
7 |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
8 BC comment? EC |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
9 |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
10 #define FOO(x) x |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
11 FOO(abc BC def EC ghi) |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
12 |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
13 #define BAR(x, y) x y |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
14 BAR(abc BC def, ghi EC jkl) |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
15 |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
16 BC |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
17 #define BAZ baz |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
18 EC |
15f51ed08ecf
Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents:
diff
changeset
|
19 BAZ |