##// END OF EJS Templates
narrow: fix flaky behavior described in issue6150...
narrow: fix flaky behavior described in issue6150 This has been plaguing the CI for a good while, and it doesn't appear to have an easy fix proposed yet. The solution in this change is to always do an unambiguous (but expensive) lookup in case of comparison. This should always be correct, albeit suboptimal. Differential Revision: https://phab.mercurial-scm.org/D10034

File last commit:

r39256:7a88643b default
r47280:b994db7c stable
Show More
bzr-definitions
16 lines | 379 B | text/plain | TextLexer
Marek Kubica
convert: add bzr source
r7053 # this file holds the definitions that are used in various bzr tests
Brodie Rao
tests: remove more instances of export FOO=bar bashism
r9042 TERM=dumb; export TERM
Marek Kubica
convert: add bzr source
r7053 echo '[extensions]' >> $HGRCPATH
echo 'convert = ' >> $HGRCPATH
glog()
{
Matt Harbison
tests: show added/modified/removed files when logging repos converted from bzr...
r39256 hg log -G --template '{rev}@{branch} "{desc|firstline}" files+: [{file_adds}], files-: [{file_dels}], files: [{file_mods}]\n' "$@"
Marek Kubica
convert: add bzr source
r7053 }
manifest()
{
echo "% manifest of $2"
hg -R $1 manifest -v -r $2
}