You can use the bisect("untested")
revset to view the untested changesets. E.g.:
hg log -r 'bisect(untested)'
If that is too much information, you can also combine it with a template option:
hg log -r 'bisect(untested)' -T '{rev}\n'
Or you can just restrict the output to the first and last entry of the range:
hg log -r 'first(bisect(untested))+last(bisect(untested))'
You can also create revset aliases in your .hg/hgrc
or ~/.hgrc
file to save some typing, e.g.:
[revsetalias]
tbt = bisect("untested")
tbt2 = first(tbt)+last(tbt)
Then you can do (for example):
hg log -r tbt
Note that if you call a revset alias untested
, you'll have to quote the string untested (e.g. bisect("untested")
), hence my choice of tbt
(for "to be tested").
See hg help revsets
for more revsets pertaining to bisection.