Meta's allow  >  operators for  +  sets, such as:

        meta TEST_2 (__TEST_PP + __TEST_QQ + __TEST_RR > 1)


But when stacked into a progressive array:

        meta TEST_2 (__TEST_PP + __TEST_QQ + __TEST_RR > 1)
        meta TEST_3 (__TEST_PP + __TEST_QQ + __TEST_RR > 2)
        meta TEST_4 (__TEST_PP + __TEST_QQ + __TEST_RR > 3)


...smaller hits also hit with larger hits, greater than 3 also triggers greater than 2:

        tests=TEST_2,TEST_3,TEST_4


I've tried replacing the  >  with  =

        meta TEST_2 (__TEST_PP + __TEST_QQ + __TEST_RR = 2)
        meta TEST_3 (__TEST_PP + __TEST_QQ + __TEST_RR = 3)
        meta TEST_4 (__TEST_PP + __TEST_QQ + __TEST_RR = 4)


...but all I get are errors:

        [4524] warn: _(Missing operator before  3?)


Is there a way for each array member to equate to a specific number of hits? In the last example, the results would look like:

        tests=TEST_4


Thanks,
Dan

Reply via email to