Mercurial > hg
changeset 42367:96fc696a9cb2
match: stabilize _rootsdirsandparents doctest
Changeset c4b8f8637d7a tried to stabilize some matcher test by using a set. This
did not work because the set order is not stable. To fix it, we post process the
result to display a sorted version of the set.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Fri, 24 May 2019 12:33:46 +0200 |
parents | 21e77ede77ab |
children | f66628c15e6f |
files | mercurial/match.py |
diffstat | 1 files changed, 12 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/match.py Tue May 21 05:32:14 2019 +0530 +++ b/mercurial/match.py Fri May 24 12:33:46 2019 +0200 @@ -1380,21 +1380,25 @@ Returns a tuple of (roots, dirs, parents). - >>> _rootsdirsandparents( + >>> r = _rootsdirsandparents( ... [(b'glob', b'g/h/*', b''), (b'glob', b'g/h', b''), ... (b'glob', b'g*', b'')]) - (['g/h', 'g/h', ''], [], set(['', 'g'])) - >>> _rootsdirsandparents( + >>> print(r[0:2], sorted(r[2])) # the set has an unstable output + (['g/h', 'g/h', ''], []) ['', 'g'] + >>> r = _rootsdirsandparents( ... [(b'rootfilesin', b'g/h', b''), (b'rootfilesin', b'', b'')]) - ([], ['g/h', ''], set(['', 'g'])) - >>> _rootsdirsandparents( + >>> print(r[0:2], sorted(r[2])) # the set has an unstable output + ([], ['g/h', '']) ['', 'g'] + >>> r = _rootsdirsandparents( ... [(b'relpath', b'r', b''), (b'path', b'p/p', b''), ... (b'path', b'', b'')]) - (['r', 'p/p', ''], [], set(['', 'p'])) - >>> _rootsdirsandparents( + >>> print(r[0:2], sorted(r[2])) # the set has an unstable output + (['r', 'p/p', ''], []) ['', 'p'] + >>> r = _rootsdirsandparents( ... [(b'relglob', b'rg*', b''), (b're', b're/', b''), ... (b'relre', b'rr', b'')]) - (['', '', ''], [], set([''])) + >>> print(r[0:2], sorted(r[2])) # the set has an unstable output + (['', '', ''], []) [''] ''' r, d = _patternrootsanddirs(kindpats)