summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_check_c_globals.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_check_c_globals.py')
-rw-r--r--Lib/test/test_check_c_globals.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_check_c_globals.py b/Lib/test/test_check_c_globals.py
index 898807a..670be52 100644
--- a/Lib/test/test_check_c_globals.py
+++ b/Lib/test/test_check_c_globals.py
@@ -2,6 +2,11 @@ import unittest
import test.test_tools
from test.support.warnings_helper import save_restore_warnings_filters
+
+# TODO: gh-92584: c-analyzer uses distutils which was removed in Python 3.12
+raise unittest.SkipTest("distutils has been removed in Python 3.12")
+
+
test.test_tools.skip_if_missing('c-analyzer')
with test.test_tools.imports_under_tool('c-analyzer'):
# gh-95349: Save/restore warnings filters to leave them unchanged.