dba7b0ef92
Changes of interest o unit-tests: use private TMPDIR to avoid errors from other users o avoid strdup in mkTempFile o always use vfork o job.c: do not create empty shell files in jobs mode reduce unnecessary calls to waitpid o cond.c: fix debug output for comparison operators in conditionals
55 lines
2.4 KiB
Plaintext
55 lines
2.4 KiB
Plaintext
CondParser_Eval: ${:Uvalue} != value
|
|
lhs = "value", rhs = "value", op = !=
|
|
CondParser_Eval: ${:U} != "
|
|
lhs = "", rhs = "", op = !=
|
|
CondParser_Eval: ${:U#hash} != "#hash"
|
|
lhs = "#hash", rhs = "#hash", op = !=
|
|
CondParser_Eval: ${:U\\} != "\\
|
|
lhs = "\", rhs = "\", op = !=
|
|
CondParser_Eval: ${:U#hash} != #hash
|
|
lhs = "#hash", rhs = "#hash", op = !=
|
|
CondParser_Eval: 0 # This is treated as a comment, but why?
|
|
CondParser_Eval: ${0 # comment :?yes:no} != no
|
|
CondParser_Eval: 0 # comment
|
|
lhs = "no", rhs = "no", op = !=
|
|
CondParser_Eval: ${1 # comment :?yes:no} != yes
|
|
CondParser_Eval: 1 # comment
|
|
lhs = "yes", rhs = "yes", op = !=
|
|
CondParser_Eval: ${UNDEF:Uundefined}!=undefined
|
|
lhs = "undefined", rhs = "undefined", op = !=
|
|
CondParser_Eval: ${UNDEF:U12345}>12345
|
|
lhs = 12345.000000, rhs = 12345.000000, op = >
|
|
CondParser_Eval: ${UNDEF:U12345}<12345
|
|
lhs = 12345.000000, rhs = 12345.000000, op = <
|
|
CondParser_Eval: (${UNDEF:U0})||0
|
|
CondParser_Eval: ${:Uvar}&&name != "var&&name"
|
|
lhs = "var&&name", rhs = "var&&name", op = !=
|
|
CondParser_Eval: ${:Uvar}||name != "var||name"
|
|
lhs = "var||name", rhs = "var||name", op = !=
|
|
CondParser_Eval: bare
|
|
make: "cond-token-plain.mk" line 102: A bare word is treated like defined(...), and the variable 'bare' is not defined.
|
|
CondParser_Eval: VAR
|
|
make: "cond-token-plain.mk" line 107: A bare word is treated like defined(...).
|
|
CondParser_Eval: V${:UA}R
|
|
make: "cond-token-plain.mk" line 114: ok
|
|
CondParser_Eval: V${UNDEF}AR
|
|
make: "cond-token-plain.mk" line 122: Undefined variables in bare words expand to an empty string.
|
|
CondParser_Eval: 0${:Ux00}
|
|
make: "cond-token-plain.mk" line 130: Numbers can be composed from literals and variable expressions.
|
|
CondParser_Eval: 0${:Ux01}
|
|
make: "cond-token-plain.mk" line 134: Numbers can be composed from literals and variable expressions.
|
|
CondParser_Eval: "" ==
|
|
make: "cond-token-plain.mk" line 140: Missing right-hand-side of operator '=='
|
|
CondParser_Eval: == ""
|
|
make: "cond-token-plain.mk" line 148: Malformed conditional (== "")
|
|
CondParser_Eval: \\
|
|
make: "cond-token-plain.mk" line 163: The variable '\\' is not defined.
|
|
CondParser_Eval: \\
|
|
make: "cond-token-plain.mk" line 168: Now the variable '\\' is defined.
|
|
CondParser_Eval: "unquoted\"quoted" != unquoted"quoted
|
|
lhs = "unquoted"quoted", rhs = "unquoted"quoted", op = !=
|
|
CondParser_Eval: $$$$$$$$ != ""
|
|
make: Fatal errors encountered -- cannot continue
|
|
make: stopped in unit-tests
|
|
exit status 1
|