1CondParser_Eval: ${:Uvalue} != value 2Comparing "value" != "value" 3CondParser_Eval: ${:U} != " 4Comparing "" != "" 5CondParser_Eval: ${:U#hash} != "#hash" 6Comparing "#hash" != "#hash" 7CondParser_Eval: ${:U\\} != "\\ 8Comparing "\" != "\" 9CondParser_Eval: ${:U#hash} != #hash 10Comparing "#hash" != "#hash" 11CondParser_Eval: 0 # This is treated as a comment, but why? 12CondParser_Eval: ${0 # comment:?yes:no} != no 13CondParser_Eval: 0 # comment 14Comparing "no" != "no" 15CondParser_Eval: ${1 # comment:?yes:no} != yes 16CondParser_Eval: 1 # comment 17Comparing "yes" != "yes" 18CondParser_Eval: ${UNDEF:Uundefined}!=undefined 19Comparing "undefined" != "undefined" 20CondParser_Eval: ${UNDEF:U12345}>12345 21Comparing 12345.000000 > 12345.000000 22CondParser_Eval: ${UNDEF:U12345}<12345 23Comparing 12345.000000 < 12345.000000 24CondParser_Eval: (${UNDEF:U0})||0 25CondParser_Eval: ${:Uvar}&&name != "var&&name" 26Comparing "var&&name" != "var&&name" 27CondParser_Eval: ${:Uvar}||name != "var||name" 28Comparing "var||name" != "var||name" 29CondParser_Eval: bare 30make: "cond-token-plain.mk" line 105: A bare word is treated like defined(...), and the variable 'bare' is not defined. 31CondParser_Eval: VAR 32make: "cond-token-plain.mk" line 111: A bare word is treated like defined(...). 33CondParser_Eval: V${:UA}R 34make: "cond-token-plain.mk" line 118: ok 35CondParser_Eval: V${UNDEF}AR 36make: "cond-token-plain.mk" line 126: Undefined variables in bare words expand to an empty string. 37CondParser_Eval: 0${:Ux00} 38make: "cond-token-plain.mk" line 134: Numbers can be composed from literals and variable expressions. 39CondParser_Eval: 0${:Ux01} 40make: "cond-token-plain.mk" line 138: Numbers can be composed from literals and variable expressions. 41CondParser_Eval: "" == 42make: "cond-token-plain.mk" line 144: Missing right-hand side of operator '==' 43CondParser_Eval: == "" 44make: "cond-token-plain.mk" line 152: Malformed conditional (== "") 45CondParser_Eval: \\ 46make: "cond-token-plain.mk" line 167: The variable '\\' is not defined. 47CondParser_Eval: \\ 48make: "cond-token-plain.mk" line 172: Now the variable '\\' is defined. 49CondParser_Eval: "unquoted\"quoted" != unquoted"quoted 50Comparing "unquoted"quoted" != "unquoted"quoted" 51CondParser_Eval: $$$$$$$$ != "" 52CondParser_Eval: left == right 53make: "cond-token-plain.mk" line 195: Malformed conditional (left == right) 54CondParser_Eval: ${0:?:} || left == right 55CondParser_Eval: 0 56make: "cond-token-plain.mk" line 201: Malformed conditional (${0:?:} || left == right) 57CondParser_Eval: left == right || ${0:?:} 58make: "cond-token-plain.mk" line 206: Malformed conditional (left == right || ${0:?:}) 59make: "cond-token-plain.mk" line 225: Malformed conditional (VAR.${IF_COUNT::+=1} != "") 60make: Fatal errors encountered -- cannot continue 61make: stopped in unit-tests 62exit status 1 63