Commit Graph

15 Commits

Author SHA1 Message Date
rillig
b8d9af4f48 make(1): move test for the ::= modifier to varmod-assign 2020-08-25 20:49:40 +00:00
rillig
cc53a52313 make(1): improve test for undefined subexpression in :C modifier
In the previous test output, it was unnecessarily hard to see what
happens because of the many empty strings.  Enclosing the capturing
groups in parentheses helps against this.
2020-08-09 15:15:29 +00:00
rillig
02fe5d23ee make(1): add test for undefined subexpression in the :C modifier 2020-08-09 15:03:25 +00:00
rillig
b1ac54abf1 make(1): improve error message in case of unfinished modifiers
The previous error message "Unclosed substitution" was wrong for several
reasons.

It is not about "unclosed", but about "unfinished" since in the
:@var@...@ modifier the missing '@' does not really close anything.

The word "substitution" may have originated in a time where :S and
:from=to were the only modifiers, and these were indeed substitutions,
but several other modifiers aren't.

The :S and :C modifiers allow an arbitrary delimiter, therefore it is
helpful to enclose the delimiter in quotes, just in case someone chooses
')' or '{' or even ' ' as delimiter.
2020-08-08 13:27:42 +00:00
rillig
cab5d20b66 make(1): remove outdated comment from unit test
It had indeed been undefined behavior and was fixed in var.c r1.359 today
in the morning.
2020-07-31 15:16:05 +00:00
rillig
8ee0af961f make(1): add test for parsing an incomplete :t modifier
This looks a lot like undefined behavior, just like in :S and :C before.
2020-07-31 13:49:25 +00:00
rillig
0da408536e make(1): fix undefined behavior when parsing malformed :C modifier
Same as in the :S modifier.
2020-07-31 13:30:09 +00:00
rillig
9f877327f0 make(1): fix segfault when evaluating ${::=value}
The bug had been in the handling of the SysV modifier for many years, but
it had not been triggered since the "parsing position for the next
modifier" had been initialized to a non-NULL pointer.

In var.v r1.350, this pointer had been initialized to NULL instead since
every ApplyModifier function must set it in every case where it returns
anything except "default_case".

There might have been a slight chance of tricking make to output a wrong
error message, but nothing worse.
2020-07-29 20:33:38 +00:00
rillig
169ec192ac make(1): add enough tests to cover the ApplyModifier functions
Only a few return statements are still missing from the code coverage.

In ApplyModifier_Assign, the test for an empty variable name is skipped
for now since it segfaults.

In ApplyModifier_SysV after the second ParseModifierPart, the branch for
the missing delimiter is not reached since this case is already checked
for in the first part of the function. To trigger this branch, a
specially crafted, unrealistic string needs to be created, and that's too
complicated for the moment.
2020-07-29 19:48:33 +00:00
rillig
f129c52737 make(1): add unit tests for parse errors in modifiers 2020-07-29 18:48:47 +00:00
rillig
bc52d07148 make(1): add test for modifier part with unbalanced braces 2020-07-28 00:13:29 +00:00
rillig
9a9cf6b25b make(1): add tests for :!...! parse errors 2020-07-26 14:39:46 +00:00
rillig
cd185c3b0e make(1): add test for missing input validation in :[123] modifier 2020-07-26 14:16:45 +00:00
rillig
2ae9c85a43 make(1): add test about missing delimiters in :@ modifier
These error conditions have been broken since var.c 1.236 on 2020-07-03.
2020-07-26 10:04:06 +00:00
apb
b9dad2e00f Give each group of tests its own output file.
* Rename each sub-makefile to *.mk;
* Add a *.exp file of expected output for each sub-makefile;
* Remove test.exp, which is replaced by all the other *.exp files.
* Use suffix rules to generate *.rawout and *.out files for
  each test case.
* Rewrite the test and accept targets to adapt to the new way.

The old (now removed) test.exp file is almost identical to the
concatenation (in the correct order) of all the new *.exp files.  There
are expected differences in makefile names embedded in the output, and
the new "exit status" lines.  Some old "*** Error code 1 (ignored)"
lines are also removed (replaced by new "exit status 1" lines).
2014-08-21 13:44:51 +00:00