# HG changeset patch # User timeless # Date 1304264176 -7200 # Node ID dea68bddfb87a124c2fdd2f208fa1b7b887d14dd # Parent b452abffcb1557153fe28edf50dc86da40e1d399 test: add pyflakes checking for unable to detect undefined names diff -r b452abffcb15 -r dea68bddfb87 tests/filterpyflakes.py --- a/tests/filterpyflakes.py Sun May 01 17:27:41 2011 +0200 +++ b/tests/filterpyflakes.py Sun May 01 17:36:16 2011 +0200 @@ -21,6 +21,7 @@ pats = [ r"imported but unused", r"local variable '.*' is assigned to but never used", + r"unable to detect undefined names", ] if not re.search('|'.join(pats), line): continue diff -r b452abffcb15 -r dea68bddfb87 tests/test-check-pyflakes.t --- a/tests/test-check-pyflakes.t Sun May 01 17:27:41 2011 +0200 +++ b/tests/test-check-pyflakes.t Sun May 01 17:36:16 2011 +0200 @@ -7,5 +7,9 @@ mercurial/commands.py:*: 'mpatch' imported but unused (glob) mercurial/commands.py:*: 'osutil' imported but unused (glob) mercurial/revlog.py:*: 'short' imported but unused (glob) + hgext/inotify/linux/__init__.py:*: 'from _inotify import *' used; unable to detect undefined names (glob) + mercurial/util.py:*: 'from posix import *' used; unable to detect undefined names (glob) + mercurial/windows.py:*: 'from win32 import *' used; unable to detect undefined names (glob) + mercurial/util.py:*: 'from windows import *' used; unable to detect undefined names (glob)