tests/test-revset.t
changeset 29408 785cadec2091
parent 29390 9349b4073c11
child 29441 9e8d258708bb
equal deleted inserted replaced
29407:20fabe814f89 29408:785cadec2091
   950   $ log '2:0 & 0::2'
   950   $ log '2:0 & 0::2'
   951   2
   951   2
   952   1
   952   1
   953   0
   953   0
   954 
   954 
   955  'head()' combines sets in wrong order:
   955  'head()' combines sets in right order:
   956 
   956 
   957   $ log '2:0 & head()'
   957   $ log '2:0 & head()'
   958   0
   958   2
   959   1
   959   1
   960   2
   960   0
   961  BROKEN: should be '2 1 0'
       
   962 
   961 
   963  'a + b', which is optimized to '_list(a b)', should take the ordering of
   962  'a + b', which is optimized to '_list(a b)', should take the ordering of
   964  the left expression:
   963  the left expression:
   965 
   964 
   966   $ try --optimize '2:0 & (0 + 1 + 2)'
   965   $ try --optimize '2:0 & (0 + 1 + 2)'