tests/test-revset.t
changeset 27991 5daf1a8c5f1d
parent 27623 b3376fba4ab9
child 28015 a036e1ae1fbe
equal deleted inserted replaced
27990:96bfd2875213 27991:5daf1a8c5f1d
  1220   [255]
  1220   [255]
  1221 
  1221 
  1222 test that chained `or` operations never eat up stack (issue4624)
  1222 test that chained `or` operations never eat up stack (issue4624)
  1223 (uses `0:1` instead of `0` to avoid future optimization of trivial revisions)
  1223 (uses `0:1` instead of `0` to avoid future optimization of trivial revisions)
  1224 
  1224 
  1225   $ hg log -T '{rev}\n' -r "`python -c "print '|'.join(['0:1'] * 500)"`"
  1225   $ hg log -T '{rev}\n' -r `python -c "print '+'.join(['0:1'] * 500)"`
  1226   0
  1226   0
  1227   1
  1227   1
  1228 
  1228 
  1229 test that repeated `-r` options never eat up stack (issue4565)
  1229 test that repeated `-r` options never eat up stack (issue4565)
  1230 (uses `-r 0::1` to avoid possible optimization at old-style parser)
  1230 (uses `-r 0::1` to avoid possible optimization at old-style parser)