Home | History | Annotate | Line # | Download | only in unit-tests
varmod-select-words.exp revision 1.6
      1 make: Bad modifier ":[]"
      2 	while evaluating variable "LIST" with value "one two three four five six"
      3 	in target "mod-squarebrackets-empty"
      4 LIST:[0]="one two three four five six"
      5 LIST:[0x0]="one two three four five six"
      6 LIST:[000]="one two three four five six"
      7 LIST:[*]="one two three four five six"
      8 LIST:[@]="one two three four five six"
      9 LIST:[0]:C/ /,/="one,two three four five six"
     10 LIST:[0]:C/ /,/g="one,two,three,four,five,six"
     11 LIST:[0]:C/ /,/1g="one,two,three,four,five,six"
     12 LIST:[*]:C/ /,/="one,two three four five six"
     13 LIST:[*]:C/ /,/g="one,two,three,four,five,six"
     14 LIST:[*]:C/ /,/1g="one,two,three,four,five,six"
     15 LIST:[@]:C/ /,/="one two three four five six"
     16 LIST:[@]:C/ /,/g="one two three four five six"
     17 LIST:[@]:C/ /,/1g="one two three four five six"
     18 LIST:[@]:[0]:C/ /,/="one,two three four five six"
     19 LIST:[0]:[@]:C/ /,/="one two three four five six"
     20 LIST:[@]:[*]:C/ /,/="one,two three four five six"
     21 LIST:[*]:[@]:C/ /,/="one two three four five six"
     22 EMPTY=""
     23 EMPTY:[#]="1" == 1 ?
     24 ESCAPEDSPACE="\ "
     25 ESCAPEDSPACE:[#]="1" == 1 ?
     26 REALLYSPACE=" "
     27 REALLYSPACE:[#]="1" == 1 ?
     28 LIST:[#]="6"
     29 LIST:[0]:[#]="1" == 1 ?
     30 LIST:[*]:[#]="1" == 1 ?
     31 LIST:[@]:[#]="6"
     32 LIST:[1]:[#]="1"
     33 LIST:[1..3]:[#]="3"
     34 EMPTY:[1]=""
     35 ESCAPEDSPACE="\ "
     36 ESCAPEDSPACE:[1]="\ "
     37 REALLYSPACE=" "
     38 REALLYSPACE:[1]="" == "" ?
     39 REALLYSPACE:[*]:[1]=" " == " " ?
     40 LIST:[1]="one"
     41 make: Bad modifier ":[1.]"
     42 	while evaluating variable "LIST" with value "one two three four five six"
     43 	in target "mod-squarebrackets-n-error-1"
     44 make: Bad modifier ":[1]."
     45 	while evaluating variable "LIST" with value "one two three four five six"
     46 	in target "mod-squarebrackets-n-error-2"
     47 LIST:[2]="two"
     48 LIST:[6]="six"
     49 LIST:[7]=""
     50 LIST:[999]=""
     51 make: Bad modifier ":[-]"
     52 	while evaluating variable "LIST" with value "one two three four five six"
     53 	in target "mod-squarebrackets-n-error-3"
     54 make: Bad modifier ":[--]"
     55 	while evaluating variable "LIST" with value "one two three four five six"
     56 	in target "mod-squarebrackets-n-error-4"
     57 LIST:[-1]="six"
     58 LIST:[-2]="five"
     59 LIST:[-6]="one"
     60 LIST:[-7]=""
     61 LIST:[-999]=""
     62 LONGLIST:[17]="17"
     63 LONGLIST:[0x11]="17"
     64 LONGLIST:[021]="17"
     65 LIST:[0]:[1]="one two three four five six"
     66 LIST:[*]:[1]="one two three four five six"
     67 LIST:[@]:[1]="one"
     68 LIST:[0]:[2]=""
     69 LIST:[*]:[2]=""
     70 LIST:[@]:[2]="two"
     71 LIST:[*]:C/ /,/:[2]=""
     72 LIST:[*]:C/ /,/:[*]:[2]=""
     73 LIST:[*]:C/ /,/:[@]:[2]="three"
     74 LONGLIST:[012..0x12]="10 11 12 13 14 15 16 17 18"
     75 make: Bad modifier ":[1.]"
     76 	while evaluating variable "LIST" with value "one two three four five six"
     77 	in target "mod-squarebrackets-start-end-error-1"
     78 make: Bad modifier ":[1..]"
     79 	while evaluating variable "LIST" with value "one two three four five six"
     80 	in target "mod-squarebrackets-start-end-error-2"
     81 make: Bad modifier ":[1.. ]"
     82 	while evaluating variable "LIST" with value "one two three four five six"
     83 	in target "mod-squarebrackets-start-end-error-3"
     84 LIST:[1..1]="one"
     85 make: Bad modifier ":[1..1.]"
     86 	while evaluating variable "LIST" with value "one two three four five six"
     87 	in target "mod-squarebrackets-start-end-error-4"
     88 LIST:[1..2]="one two"
     89 LIST:[2..1]="two one"
     90 LIST:[3..-2]="three four five"
     91 LIST:[-4..4]="three four"
     92 make: Bad modifier ":[0..1]"
     93 	while evaluating variable "LIST" with value "one two three four five six"
     94 	in target "mod-squarebrackets-start-end-error-5"
     95 make: Bad modifier ":[-1..0]"
     96 	while evaluating variable "LIST" with value "one two three four five six"
     97 	in target "mod-squarebrackets-start-end-error-6"
     98 LIST:[-1..1]="six five four three two one"
     99 LIST:[0..0]="one two three four five six"
    100 LIST:[3..99]="three four five six"
    101 LIST:[-3..-99]="four three two one"
    102 LIST:[-99..-3]="one two three four"
    103 HASH="#" == "#" ?
    104 LIST:[${HASH}]="6"
    105 LIST:[${ZERO}]="one two three four five six"
    106 LIST:[${ZERO}x${ONE}]="one"
    107 LIST:[${ONE}]="one"
    108 LIST:[${MINUSONE}]="six"
    109 LIST:[${STAR}]="one two three four five six"
    110 LIST:[${AT}]="one two three four five six"
    111 make: Bad modifier ":[${EMPTY"
    112 	while evaluating variable "LIST" with value "one two three four five six"
    113 	in target "mod-squarebrackets-nested-error-1"
    114 LIST:[${LONGLIST:[21]:S/2//}]="one"
    115 LIST:[${LIST:[#]}]="six"
    116 LIST:[${LIST:[${HASH}]}]="six"
    117 LIST:[  -1..   +3]="six five four three"
    118 LIST:S/ /,/="one two three four five six"
    119 LIST:S/ /,/W="one,two three four five six"
    120 LIST:S/ /,/gW="one,two,three,four,five,six"
    121 EMPTY:S/^/,/=","
    122 EMPTY:S/^/,/W=","
    123 LIST:C/ /,/="one two three four five six"
    124 LIST:C/ /,/W="one,two three four five six"
    125 LIST:C/ /,/gW="one,two,three,four,five,six"
    126 EMPTY:C/^/,/=","
    127 EMPTY:C/^/,/W=","
    128 LIST:tW="one two three four five six"
    129 LIST:tw="one two three four five six"
    130 LIST:tW:C/ /,/="one,two three four five six"
    131 LIST:tW:C/ /,/g="one,two,three,four,five,six"
    132 LIST:tW:C/ /,/1g="one,two,three,four,five,six"
    133 LIST:tw:C/ /,/="one two three four five six"
    134 LIST:tw:C/ /,/g="one two three four five six"
    135 LIST:tw:C/ /,/1g="one two three four five six"
    136 LIST:tw:tW:C/ /,/="one,two three four five six"
    137 LIST:tW:tw:C/ /,/="one two three four five six"
    138 exit status 2
    139