]> granicus.if.org Git - python/commit
bpo-36876: Add a tool that identifies unsupported global C variables. (#15877)
authorEric Snow <ericsnowcurrently@gmail.com>
Wed, 11 Sep 2019 18:49:45 +0000 (19:49 +0100)
committerGitHub <noreply@github.com>
Wed, 11 Sep 2019 18:49:45 +0000 (19:49 +0100)
commitee536b2020b1f0baad1286dbd4345e13870324af
tree2486233603db05a76aaef863bd6639455e3dfef7
parent9936371af298d465095ae70bc9c2943b4b16eac4
bpo-36876: Add a tool that identifies unsupported global C variables. (#15877)
51 files changed:
Lib/test/test_check_c_globals.py [new file with mode: 0644]
Lib/test/test_clinic.py
Lib/test/test_tools/__init__.py
Lib/test/test_tools/test_c_analyzer/__init__.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/__main__.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_analyzer_common/__init__.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_analyzer_common/test_files.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_analyzer_common/test_info.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_analyzer_common/test_known.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_globals/__init__.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_globals/test___main__.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_globals/test_find.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_globals/test_functional.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_globals/test_show.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_globals/test_supported.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_parser/__init__.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_parser/test_declarations.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_parser/test_info.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_parser/test_preprocessor.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_symbols/__init__.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/test_c_symbols/test_info.py [new file with mode: 0644]
Lib/test/test_tools/test_c_analyzer/util.py [new file with mode: 0644]
Tools/c-analyzer/README [moved from Tools/c-globals/README with 100% similarity]
Tools/c-analyzer/c-globals.py [new file with mode: 0644]
Tools/c-analyzer/c_analyzer_common/__init__.py [new file with mode: 0644]
Tools/c-analyzer/c_analyzer_common/_generate.py [new file with mode: 0644]
Tools/c-analyzer/c_analyzer_common/files.py [new file with mode: 0644]
Tools/c-analyzer/c_analyzer_common/info.py [new file with mode: 0644]
Tools/c-analyzer/c_analyzer_common/known.py [new file with mode: 0644]
Tools/c-analyzer/c_analyzer_common/util.py [new file with mode: 0644]
Tools/c-analyzer/c_globals/README [new file with mode: 0644]
Tools/c-analyzer/c_globals/__init__.py [new file with mode: 0644]
Tools/c-analyzer/c_globals/__main__.py [new file with mode: 0644]
Tools/c-analyzer/c_globals/find.py [new file with mode: 0644]
Tools/c-analyzer/c_globals/show.py [new file with mode: 0644]
Tools/c-analyzer/c_globals/supported.py [new file with mode: 0644]
Tools/c-analyzer/c_parser/__init__.py [new file with mode: 0644]
Tools/c-analyzer/c_parser/declarations.py [new file with mode: 0644]
Tools/c-analyzer/c_parser/info.py [new file with mode: 0644]
Tools/c-analyzer/c_parser/naive.py [new file with mode: 0644]
Tools/c-analyzer/c_parser/preprocessor.py [new file with mode: 0644]
Tools/c-analyzer/c_parser/source.py [new file with mode: 0644]
Tools/c-analyzer/c_symbols/__init__.py [new file with mode: 0644]
Tools/c-analyzer/c_symbols/binary.py [new file with mode: 0644]
Tools/c-analyzer/c_symbols/info.py [new file with mode: 0644]
Tools/c-analyzer/c_symbols/resolve.py [new file with mode: 0644]
Tools/c-analyzer/c_symbols/source.py [new file with mode: 0644]
Tools/c-analyzer/check-c-globals.py [moved from Tools/c-globals/check-c-globals.py with 100% similarity]
Tools/c-analyzer/ignored-globals.txt [moved from Tools/c-globals/ignored-globals.txt with 100% similarity]
Tools/c-analyzer/ignored.tsv [new file with mode: 0644]
Tools/c-analyzer/known.tsv [new file with mode: 0644]