Up to [cvs.NetBSD.org] / src / usr.bin / make / unit-tests
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.11 / (download) - annotate - [select for diffs], Wed Feb 9 21:09:24 2022 UTC (11 months, 2 weeks ago) by rillig
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
HEAD
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
make: fix mistakes, spelling and typos in comments and manual page No binary change for -DNDEBUG.
Revision 1.10 / (download) - annotate - [select for diffs], Sun Jan 23 21:48:59 2022 UTC (12 months ago) by rillig
Branch: MAIN
Changes since 1.9: +3 -3
lines
Diff to previous 1.9 (colored)
tests/make: add a few more tests
Revision 1.9 / (download) - annotate - [select for diffs], Sun Jan 23 18:59:18 2022 UTC (12 months ago) by rillig
Branch: MAIN
Changes since 1.8: +26 -5
lines
Diff to previous 1.8 (colored)
tests/make: add more tests for the modifier ':ts'
Revision 1.8 / (download) - annotate - [select for diffs], Sun Jan 23 18:00:53 2022 UTC (12 months ago) by rillig
Branch: MAIN
Changes since 1.7: +60 -6
lines
Diff to previous 1.7 (colored)
tests/make: migrate modts to varmod-to-separator and explain
Revision 1.7 / (download) - annotate - [select for diffs], Sun Nov 15 20:20:58 2020 UTC (2 years, 2 months ago) by rillig
Branch: MAIN
CVS Tags: cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Changes since 1.6: +7 -1
lines
Diff to previous 1.6 (colored)
make(1): update and add comments in tests As a result of the new comments, some line numbers have changed in the output of the tests. No other changes.
Revision 1.6 / (download) - annotate - [select for diffs], Sun Nov 1 14:36:25 2020 UTC (2 years, 2 months ago) by rillig
Branch: MAIN
Changes since 1.5: +5 -1
lines
Diff to previous 1.5 (colored)
make(1): treat malformed :range, :ts and :[...] as errors Before, integer overflow in the :[1..2] modifier had not been detected, and the actual behavior varied between ILP64 and LP64I32 machines. Before, the :ts modifier accepted character literals like \012345 and \x1F600, which don't fit in a single character and were thus truncated. Before, the :range modifier issued an "Unknown modifier" error message for :range=x, which was not quite correct. The error message in this case is now "Invalid number".
Revision 1.5 / (download) - annotate - [select for diffs], Sun Nov 1 13:28:50 2020 UTC (2 years, 2 months ago) by rillig
Branch: MAIN
Changes since 1.4: +31 -4
lines
Diff to previous 1.4 (colored)
make(1): add tests for parsing errors in the :ts variable modifier
Revision 1.4 / (download) - annotate - [select for diffs], Sun Nov 1 11:50:11 2020 UTC (2 years, 2 months ago) by rillig
Branch: MAIN
Changes since 1.3: +21 -1
lines
Diff to previous 1.3 (colored)
make(1): add test for out-of-bounds separator in variable modifier :ts
Revision 1.3 / (download) - annotate - [select for diffs], Mon Aug 31 19:58:21 2020 UTC (2 years, 4 months ago) by rillig
Branch: MAIN
Changes since 1.2: +111 -2
lines
Diff to previous 1.2 (colored)
make(1): move some of the :ts tests into a separate file The successful cases can be easily tested in the .if conditions. Around these conditions, there is enough space for explaining the test cases and their purpose. The failure cases have been left in the file for now since they still produce unwanted characters in the output. These characters are not produced when the parse error occurs in a conditional.
Revision 1.2 / (download) - annotate - [select for diffs], Sun Aug 16 14:25:16 2020 UTC (2 years, 5 months ago) by rillig
Branch: MAIN
Changes since 1.1: +3 -2
lines
Diff to previous 1.1 (colored)
make(1): describe the purpose of each newly added unit test dummy
Revision 1.1 / (download) - annotate - [select for diffs], Sun Aug 16 12:07:51 2020 UTC (2 years, 5 months ago) by rillig
Branch: MAIN
make(1): add dummies for fine-grained tests, one per single feature The test names have been derived from the current manual page. All these tests are dummies right now, and the code from the existing tests will be moved into the new tests step by step. This is done to prevent modmisc, escape, varmod-edge and varmisc from growing without any bounds, and to reduce the side-effects of one test to the others.