annotate tests/t38.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
parents 8f5b326689da
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
159
8cef6d7227a8 Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
diff changeset
1 #define m() __FILE__:__LINE__
8cef6d7227a8 Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
diff changeset
2 __LINE__
8cef6d7227a8 Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
diff changeset
3 __FILE__
8cef6d7227a8 Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
diff changeset
4 __LINE__
8cef6d7227a8 Expand __FILE__ and __LINE__.
Joerg Sonnenberger <joerg@bec.de>
parents:
diff changeset
5 m()
160
d6e6b3940780 Fully implement #line.
Joerg Sonnenberger <joerg@bec.de>
parents: 159
diff changeset
6 #line 500
d6e6b3940780 Fully implement #line.
Joerg Sonnenberger <joerg@bec.de>
parents: 159
diff changeset
7 m()
d6e6b3940780 Fully implement #line.
Joerg Sonnenberger <joerg@bec.de>
parents: 159
diff changeset
8 #line 600 "foo.c"
d6e6b3940780 Fully implement #line.
Joerg Sonnenberger <joerg@bec.de>
parents: 159
diff changeset
9 m()
179
8f5b326689da add a bit to t38
David A. Holland
parents: 160
diff changeset
10 #include "subdir/test.h"
8f5b326689da add a bit to t38
David A. Holland
parents: 160
diff changeset
11 m()