Up to [cvs.NetBSD.org] / src / tests / usr.bin / indent
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.5 / (download) - annotate - [select for diffs], Sun Apr 24 09:04:12 2022 UTC (9 months, 2 weeks ago) by rillig
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
HEAD
Changes since 1.4: +7 -7
lines
Diff to previous 1.4 (colored)
tests/indent: change directive from '#' to '//' Using a '//' instead of '#' turns the directives into well-formed C code, resulting in fewer error markers in the editor.
Revision 1.4 / (download) - annotate - [select for diffs], Fri Apr 22 21:21:20 2022 UTC (9 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.3: +1 -2
lines
Diff to previous 1.3 (colored)
indent: remove FreeBSD IDs Most of the IDs were empty anyway.
Revision 1.3 / (download) - annotate - [select for diffs], Sat Oct 16 21:32:10 2021 UTC (15 months, 3 weeks ago) by rillig
Branch: MAIN
Changes since 1.2: +16 -3
lines
Diff to previous 1.2 (colored)
tests/lint: document and extend the tests for options
Revision 1.2 / (download) - annotate - [select for diffs], Sat Oct 16 05:40:17 2021 UTC (15 months, 3 weeks ago) by rillig
Branch: MAIN
Changes since 1.1: +1 -57
lines
Diff to previous 1.1 (colored)
tests/indent: remove duplicate data from options tests
Revision 1.1 / (download) - annotate - [select for diffs], Sat Oct 16 03:20:13 2021 UTC (15 months, 3 weeks ago) by rillig
Branch: MAIN
tests/indent: condense tests for bool options Previously, each bool option such as '-bacc/-nbacc' had 6 test files: input, options, output for the positive and negative option. Splitting this test data into separate files made it harder than necessary to quickly compare the test output from '-bacc' with that of '-nbacc'. Have a single test for the positive and negative option, allowing several tests to run on the same input with different options. This commit only contains the rather mechanic changes of concatenating the previous test files and inserting the '#indent' directives, which are documented in t_options.sh. Removing duplicate input sections, as well as other cleanups will follow soon. No functional change.