Up to [cvs.NetBSD.org] / src / tests / usr.bin / xlint / lint1
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.6, Fri Jun 17 20:23:58 2022 UTC (7 months, 1 week ago) by rillig
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +0 -0
lines
FILE REMOVED
tests/lint: remove .exp files, as they have become redundant Now that each lint1 test lists all generated diagnostics as 'expect' comments, the information from the .exp files is no longer needed. The only information that gets lost is the order of the diagnostics, which is mostly relevant for paired messages like 'inconsistent definition' + 'previous definition was here'.
Revision 1.5 / (download) - annotate - [select for diffs], Tue May 31 00:35:18 2022 UTC (8 months ago) by rillig
Branch: MAIN
Changes since 1.4: +6 -4
lines
Diff to previous 1.4 (colored)
lint: fix null pointer dereference after syntax error Found by afl, starting with the malformed input '/**/f=({;/**/};}' that no longer crashes. This input led to 'f=({L:;}', which is at least a syntactically valid prefix of a translation unit, containing a GCC statement expression with an unused label. The error message for this unused label assumed that it would always be inside a function definition. While here, document incomplete recovery after syntax errors, in msg_249.c.
Revision 1.4 / (download) - annotate - [select for diffs], Sun Apr 3 00:39:32 2022 UTC (9 months, 4 weeks ago) by rillig
Branch: MAIN
Changes since 1.3: +1 -0
lines
Diff to previous 1.3 (colored)
lint: fix crash after syntax error in GCC statement expression Since cgram.y 1.226 from 2021-05-03.
Revision 1.3 / (download) - annotate - [select for diffs], Sat Jan 15 14:22:03 2022 UTC (12 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.2: +3 -3
lines
Diff to previous 1.2 (colored)
tests/lint: expect complete messages in feature tests Previously, the tests contained many comments like /* expect: 123 */, which were useless to a casual reader since nobody is expected to learn lint's message IDs by heart. Replace these with the complete diagnostics, to show what lint is complaining about. The tests named msg_*.c have been left unmodified since they mention the full message text in their header comment. No functional change.
Revision 1.2 / (download) - annotate - [select for diffs], Sun Jun 20 11:42:26 2021 UTC (19 months, 1 week ago) by rillig
Branch: MAIN
Changes since 1.1: +1 -0
lines
Diff to previous 1.1 (colored)
lint: fix crash on semantically wrong code in ({...}) Found by afl.
Revision 1.1 / (download) - annotate - [select for diffs], Sat Jun 19 15:51:11 2021 UTC (19 months, 1 week ago) by rillig
Branch: MAIN
lint: fix crash in malformed initialization