comparison tests/test-hook.t @ 46492:7289eac777ec stable

hooks: introduce a `:run-with-plain` option for hooks This option control if HGPLAIN should be set or not for the hooks. This is the first step to give user some control of the HGPLAIN setting for they hooks. Some hooks (eg: consistency checking) deserve to be run with HGPLAIN, some other (eg: user set visual helper) might need to respect the user config and setting. So both usage are valid and we need to restore the ability to run -without- HGPLAIN that got lost in Mercurial 5.7. This does not offer a way to restore the pre-5.7 behavior yet (respect whatever HGPLAIN setting from the shell), this will be dealt with in the next changeset. The option name is a bit verbose because implementing this highlighs the need for another option: `:run-if-plain`. That would make it possible for some hooks to be easily disabled if HG PLAIN is set. However such option would be a new feature, not something introduced to mitigate a behavior change introduced in 5.7, so the `:run-if-plain` option belong to the default branch and is not part of this series. Differential Revision: https://phab.mercurial-scm.org/D9981
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 10 Feb 2021 23:21:21 +0100
parents 0760282995cf
children b910be772eb9
comparison
equal deleted inserted replaced
46491:0760282995cf 46492:7289eac777ec
1405 HGPLAIN setting in hooks 1405 HGPLAIN setting in hooks
1406 ======================== 1406 ========================
1407 1407
1408 $ cat << EOF >> .hg/hgrc 1408 $ cat << EOF >> .hg/hgrc
1409 > [hooks] 1409 > [hooks]
1410 > pre-version.testing-default=echo '### default ###' plain: \$HGPLAIN 1410 > pre-version.testing-default=echo '### default ###' plain: \${HGPLAIN:-'<unset>'}
1411 > pre-version.testing-yes=echo '### yes #######' plain: \${HGPLAIN:-'<unset>'}
1412 > pre-version.testing-yes:run-with-plain=yes
1413 > pre-version.testing-no=echo '### no ########' plain: \${HGPLAIN:-'<unset>'}
1414 > pre-version.testing-no:run-with-plain=no
1411 > EOF 1415 > EOF
1412 1416
1413 $ (unset HGPLAIN; hg version --quiet) 1417 $ (unset HGPLAIN; hg version --quiet)
1414 ### default ### plain: 1 1418 ### default ### plain: 1
1419 ### yes ####### plain: 1
1420 ### no ######## plain: <unset>
1415 Mercurial Distributed SCM (*) (glob) 1421 Mercurial Distributed SCM (*) (glob)
1416 1422
1417 $ HGPLAIN=1 hg version --quiet 1423 $ HGPLAIN=1 hg version --quiet
1418 ### default ### plain: 1 1424 ### default ### plain: 1
1425 ### yes ####### plain: 1
1426 ### no ######## plain: <unset>
1419 Mercurial Distributed SCM (*) (glob) 1427 Mercurial Distributed SCM (*) (glob)