Mercurial > hg-stable
comparison tests/test-logtoprocess.t @ 39931:c4a3d3c67c4f
logtoprocess: connect all fds to /dev/null to avoid bad interaction with pager
We detected that pager is waiting for log-to-process script to finish, which
is annoying when adding a script on commandfinish that does an HTTP push.
There seems to be no workaround on the script side and it will make the
behavior on Linux/MacOS closer to the Windows behavior.
The drawback is that it makes the related tests more flaky as log-to-process
outputs are now really asynchronous.
If it's considered a BC change, another option would be to add a config option
for this new behavior. I personally think that the different behavior between
Windows and Linux is confusing and that it's a bug I would be fine with a new
config option.
Differential Revision: https://phab.mercurial-scm.org/D4816
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Fri, 03 Nov 2017 21:11:07 +0100 |
parents | dfca83594145 |
children | 18da306e92b5 |
comparison
equal
deleted
inserted
replaced
39930:dfca83594145 | 39931:c4a3d3c67c4f |
---|---|
119 $ hg version -q --pager=always | 119 $ hg version -q --pager=always |
120 Mercurial Distributed SCM (version *) (glob) | 120 Mercurial Distributed SCM (version *) (glob) |
121 $ touch $TESTTMP/wait-for-touched | 121 $ touch $TESTTMP/wait-for-touched |
122 $ sleep 0.2 | 122 $ sleep 0.2 |
123 $ test -f $TESTTMP/touched && echo "SUCCESS Pager is not waiting on ltp" || echo "FAIL Pager is waiting on ltp" | 123 $ test -f $TESTTMP/touched && echo "SUCCESS Pager is not waiting on ltp" || echo "FAIL Pager is waiting on ltp" |
124 FAIL Pager is waiting on ltp | 124 SUCCESS Pager is not waiting on ltp |