Mercurial > hg-stable
diff tests/test-extension.t @ 34843:df871c41bd00
tests: make test-extension.t's baduisetup.py test fail even if bdiff exists
A mercurial.bdiff module has existed at some point and when I have
built at an old version, some .pyc file or something seems to stick
around and test-extension.t fails. Let's remove the reference to bdiff
and simplify the test.
Differential Revision: https://phab.mercurial-scm.org/D1162
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 17 Oct 2017 09:46:31 -0700 |
parents | 6bfe43dd20eb |
children | f0a62afd1e40 |
line wrap: on
line diff
--- a/tests/test-extension.t Tue Oct 17 10:33:27 2017 -0700 +++ b/tests/test-extension.t Tue Oct 17 09:46:31 2017 -0700 @@ -516,21 +516,13 @@ Make sure a broken uisetup doesn't globally break hg: $ cat > $TESTTMP/baduisetup.py <<EOF - > from mercurial import ( - > bdiff, - > extensions, - > ) - > - > def blockswrapper(orig, *args, **kwargs): - > return orig(*args, **kwargs) - > > def uisetup(ui): - > extensions.wrapfunction(bdiff, 'blocks', blockswrapper) + > 1/0 > EOF Even though the extension fails during uisetup, hg is still basically usable: $ hg --config extensions.baduisetup=$TESTTMP/baduisetup.py version - \*\*\* failed to set up extension baduisetup: No module named (mercurial\.)?bdiff (re) + *** failed to set up extension baduisetup: integer division or modulo by zero Mercurial Distributed SCM (version *) (glob) (see https://mercurial-scm.org for more information) @@ -542,18 +534,10 @@ Traceback (most recent call last): File "*/mercurial/extensions.py", line *, in _runuisetup (glob) uisetup(ui) - File "$TESTTMP/baduisetup.py", line 10, in uisetup - extensions.wrapfunction(bdiff, 'blocks', blockswrapper) - File "*/mercurial/extensions.py", line *, in wrapfunction (glob) - origfn = getattr(container, funcname) - File "*/hgdemandimport/demandimportpy2.py", line *, in __getattr__ (glob) - self._load() - File "*/hgdemandimport/demandimportpy2.py", line *, in _load (glob) - mod = _hgextimport(_origimport, head, globals, locals, None, level) - File "*/hgdemandimport/demandimportpy2.py", line *, in _hgextimport (glob) - return importfunc(name, globals, *args, **kwargs) - ImportError: No module named (mercurial\.)?bdiff (re) - \*\*\* failed to set up extension baduisetup: No module named (mercurial\.)?bdiff (re) + File "$TESTTMP/baduisetup.py", line 2, in uisetup + 1/0 + ZeroDivisionError: integer division or modulo by zero + *** failed to set up extension baduisetup: integer division or modulo by zero Mercurial Distributed SCM (version *) (glob) (see https://mercurial-scm.org for more information)