##// 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:

r27350:89027334 default
r47280:b994db7c stable
Show More
histedit-helpers.sh
7 lines | 229 B | application/x-sh | BashLexer
/ tests / histedit-helpers.sh
Augie Fackler
histedit: new extension for interactive history editing
r17064 fixbundle() {
grep -v 'saving bundle' | grep -v 'saved backup' | \
grep -v added | grep -v adding | \
grep -v "unable to find 'e' for patching" | \
timeless
tests: histedit-helpers fixbundle should not complain about no input
r27350 grep -v "e: No such file or directory" | \
cat
Augie Fackler
histedit: new extension for interactive history editing
r17064 }