summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2019-09-12 09:51:00 (GMT)
committerGitHub <noreply@github.com>2019-09-12 09:51:00 (GMT)
commit64535fc6c0712caef0bc46be30e661f7ccf8280e (patch)
treea4de1a841af02c375e89822f518e1f85146cdc71 /Lib/test
parent7544497ad322322050f3cb64ba2f4cb7f38eddee (diff)
downloadcpython-64535fc6c0712caef0bc46be30e661f7ccf8280e.zip
cpython-64535fc6c0712caef0bc46be30e661f7ccf8280e.tar.gz
cpython-64535fc6c0712caef0bc46be30e661f7ccf8280e.tar.bz2
bpo-36876: Skip test_check_c_globals for now. (gh-16017)
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_check_c_globals.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_check_c_globals.py b/Lib/test/test_check_c_globals.py
index 009560e..a3925f0 100644
--- a/Lib/test/test_check_c_globals.py
+++ b/Lib/test/test_check_c_globals.py
@@ -9,7 +9,9 @@ with test.test_tools.imports_under_tool('c-analyzer'):
class ActualChecks(unittest.TestCase):
# XXX Also run the check in "make check".
- @unittest.expectedFailure
+ #@unittest.expectedFailure
+ # Failing on one of the buildbots (see https://bugs.python.org/issue36876).
+ @unittest.skip('activate this once all the globals have been resolved')
def test_check_c_globals(self):
try:
main('check', {})