CVS log for src/usr.bin/make/unit-tests/dep-var.exp
Up to [cvs.NetBSD.org] / src / usr.bin / make / unit-tests
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.8: download - view: text, markup, annotated - select for diffs
Tue Jul 9 19:43:01 2024 UTC (4 months, 3 weeks ago) by rillig
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +1 -1
lines
make: error out on parse/evaluation errors in shell commands
The expression ${VAR:X} has an unknown modifier ':X'. Previously, this
expression errored out when the expression was evaluated at parse time,
but not when the expression was evaluated when generating the commands
to bring a target up to date. The errors were previously reported, they
didn't affect the exit status, though.
Now, errors in expressions are handled in the same way, regardless of
the time at which they are evaluated.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Jun 2 15:31:26 2024 UTC (6 months ago) by rillig
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2
lines
make: sync VarEvalMode constant names with their debug log names
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sun Nov 19 22:06:15 2023 UTC (12 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -1
lines
make: replace 'variable expression' with 'expression' in diagnostics
Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Feb 13 21:01:46 2023 UTC (21 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +24 -0
lines
tests/make: update test for evaluating undefined variables
Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Sep 8 05:26:22 2020 UTC (4 years, 2 months ago) by rillig
Branches: MAIN
CVS tags: netbsd-10-base,
netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1,
netbsd-10,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -0
lines
make(1): fix off-by-one error in SuffExpandChildren
In suff.c r1.144 from yesterday, in the line "cp += nested_p - cp", I
accidentally removed the "- 1". Since these "- 1" lines lead to slow
execution, each branch now increments the pointer separately by the
actually needed amount.
Fixing this bug posed way more new questions than it answered, and it
revealed an inconsistency in the parser about how characters are to be
escaped, and missing details in the documentation of Var_Parse, as well
as a parse error that unexpectedly doesn't stop make from continuing.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Thu Sep 3 19:50:14 2020 UTC (4 years, 3 months ago) by rillig
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -0
lines
make(1): add test for expansion of indirect variables in dependencies
Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Sep 3 19:10:56 2020 UTC (4 years, 3 months ago) by rillig
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -0
lines
make: extend test for unresolved variables in dependencies
This is to ensure that the upcoming refactoring of Var_Parse in
SuffExpandChildren does not break anything.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Sat Aug 22 16:51:26 2020 UTC (4 years, 3 months ago) by rillig
Branches: MAIN
make(1): add test for deferred variable expansion in dependencies
CVSweb <webmaster@jp.NetBSD.org>