Mercurial > hg
view tests/test-username-newline @ 10914:b7ca37b90762 stable
revlog: fix lazyparser.__iter__() to return all revisions (issue2137)
Previously, it only returned revisions that were in the revlog when it
was originally opened; revisions added since then were invisible.
This broke revlog._partialmatch() and therefore repo.lookup().
(Credit to Benoit Boissinot for simplifying my original test script
and for the actual fix.)
author | Greg Ward <greg-hg@gerg.ca> |
---|---|
date | Wed, 14 Apr 2010 15:06:40 -0400 |
parents | 9d023ef7b467 |
children |
line wrap: on
line source
#!/bin/sh # hg init foo cd foo touch a unset HGUSER echo "[ui]" >> .hg/hgrc echo "username= foo" >> .hg/hgrc echo " bar1" >> .hg/hgrc hg ci -Am m rm .hg/hgrc HGUSER=`(echo foo; echo bar2)` hg ci -Am m hg ci -Am m -u "`(echo foo; echo bar3)`" true