Up to [cvs.NetBSD.org] / src / usr.bin / make / unit-tests
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.14 / (download) - annotate - [select for diffs], Sun Sep 25 12:51:37 2022 UTC (4 months, 1 week ago) by rillig
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
HEAD
Changes since 1.13: +2 -2
lines
Diff to previous 1.13 (colored)
tests/make: reduce trailing whitespace
Revision 1.13 / (download) - annotate - [select for diffs], Sun Sep 4 22:55:00 2022 UTC (5 months ago) by rillig
Branch: MAIN
Changes since 1.12: +1 -1
lines
Diff to previous 1.12 (colored)
make: add more details to error message for numeric comparison Before: String comparison operator must be either == or != After: Comparison with '>=' requires both operands 'no' and '10' to be numeric Noticed by martin@ in pkgsrc/textproc/py-pygments.
Revision 1.12 / (download) - annotate - [select for diffs], Thu Mar 3 19:36:35 2022 UTC (11 months ago) by rillig
Branch: MAIN
Changes since 1.11: +4 -4
lines
Diff to previous 1.11 (colored)
make: make debug logging for comparisons less technical
Revision 1.11 / (download) - annotate - [select for diffs], Fri Jun 11 13:01:28 2021 UTC (19 months, 3 weeks ago) by rillig
Branch: MAIN
Changes since 1.10: +4 -0
lines
Diff to previous 1.10 (colored)
tests/make: demonstrate handling of '+' and '*' in modifier ':?' It doesn't make sense that these two characters are handled differently, but that's what the current code has been doing for years.
Revision 1.10 / (download) - annotate - [select for diffs], Mon Apr 19 23:51:42 2021 UTC (21 months, 2 weeks 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.9: +2 -2
lines
Diff to previous 1.9 (colored)
make: do not complain when skipping the condition 'no >= 10' Seen in external/bsd/tmux when building with Clang. See varmod-ifelse.mk for the detailed story.
Revision 1.9 / (download) - annotate - [select for diffs], Mon Apr 19 23:43:14 2021 UTC (21 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.8: +4 -0
lines
Diff to previous 1.8 (colored)
tests/make: add another example for parsing of the modifier ':?'
Revision 1.8 / (download) - annotate - [select for diffs], Mon Apr 19 23:27:17 2021 UTC (21 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.7: +3 -1
lines
Diff to previous 1.7 (colored)
tests/make: add detailed explanation for error message in conditional
Revision 1.7 / (download) - annotate - [select for diffs], Mon Apr 19 22:22:27 2021 UTC (21 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.6: +6 -6
lines
Diff to previous 1.6 (colored)
make: use straight quotes for error 'Bad conditional expression' This diagnostic was supposed to be an error, see ApplyModifier_IfElse. When such an error occurs while the makefiles are read, make stops with an error, as can be expected. But when such an error occurs later, after all makefiles have been read, the message is printed but make does not stop. In lint mode (-dL), make stops in such a case. I didn't dare to make this the default behavior, out of fear of breaking existing build infrastructure, not only in NetBSD or pkgsrc, but also FreeBSD and other operating systems that use the bmake distribution, generated from the same source code.
Revision 1.6 / (download) - annotate - [select for diffs], Mon Apr 19 22:05:29 2021 UTC (21 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.5: +2 -0
lines
Diff to previous 1.5 (colored)
tests/make: demonstrate unexpected behavior of the modifier ':?'
Revision 1.5 / (download) - annotate - [select for diffs], Thu Dec 10 16:36:47 2020 UTC (2 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.4: +4 -0
lines
Diff to previous 1.4 (colored)
make(1): add test demonstrating how to defer evaluation in :? modifier
Revision 1.4 / (download) - annotate - [select for diffs], Thu Nov 12 00:29:55 2020 UTC (2 years, 2 months ago) by rillig
Branch: MAIN
Changes since 1.3: +8 -0
lines
Diff to previous 1.3 (colored)
make(1): add test for unhandled parse error in :? variable modifier
Revision 1.3 / (download) - annotate - [select for diffs], Fri Oct 23 14:38:39 2020 UTC (2 years, 3 months ago) by rillig
Branch: MAIN
Changes since 1.2: +4 -2
lines
Diff to previous 1.2 (colored)
make(1): move tests from cond2.mk to varmod-ifelse.mk (fixup)
Revision 1.2 / (download) - annotate - [select for diffs], Fri Oct 23 14:24:51 2020 UTC (2 years, 3 months ago) by rillig
Branch: MAIN
Changes since 1.1: +6 -1
lines
Diff to previous 1.1 (colored)
make(1): move tests from cond2.mk to varmod-ifelse.mk
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.