As discussed in PR #142353, the current testsuite of the `clang` Python bindings has several issues: - It `libclang.so` cannot be loaded into `python` to run the testsuite, the whole `ninja check-all` aborts. - The result of running the testsuite isn't report like the `lit`-based tests, rendering them almost invisible. - The testsuite is disabled in a non-obvious way (`RUN_PYTHON_TESTS`) in `tests/CMakeLists.txt`, which again doesn't show up in the test results. All these issues can be avoided by integrating the Python bindings tests with `lit`, which is what this patch does: - The actual test lives in `clang/test/bindings/python/bindings.sh` and is run by `lit`. - The current `clang/bindings/python/tests` directory (minus the now-subperfluous `CMakeLists.txt`) is moved into the same directory. - The check if `libclang` is loadable (originally from PR #142353) is now handled via a new `lit` feature, `libclang-loadable`. - The various ways to disable the tests have been turned into `XFAIL`s as appropriate. This isn't complete and not completely tested yet. Tested on `sparc-sun-solaris2.11`, `sparcv9-sun-solaris2.11`, `i386-pc-solaris2.11`, `amd64-pc-solaris2.11`, `i686-pc-linux-gnu`, and `x86_64-pc-linux-gnu`. Co-authored-by: Rainer Orth <ro@gcc.gnu.org>
77 lines
2.2 KiB
Python
77 lines
2.2 KiB
Python
# This file provides common utility functions for the test suite.
|
|
|
|
from clang.cindex import Cursor, TranslationUnit
|
|
|
|
|
|
def get_tu(source, lang="c", all_warnings=False, flags=[]):
|
|
"""Obtain a translation unit from source and language.
|
|
|
|
By default, the translation unit is created from source file "t.<ext>"
|
|
where <ext> is the default file extension for the specified language. By
|
|
default it is C, so "t.c" is the default file name.
|
|
|
|
Supported languages are {c, cpp, objc}.
|
|
|
|
all_warnings is a convenience argument to enable all compiler warnings.
|
|
"""
|
|
args = list(flags)
|
|
name = "t.c"
|
|
if lang == "cpp":
|
|
name = "t.cpp"
|
|
args.append("-std=c++11")
|
|
elif lang == "objc":
|
|
name = "t.m"
|
|
elif lang != "c":
|
|
raise Exception("Unknown language: %s" % lang)
|
|
|
|
if all_warnings:
|
|
args += ["-Wall", "-Wextra"]
|
|
|
|
return TranslationUnit.from_source(name, args, unsaved_files=[(name, source)])
|
|
|
|
|
|
def get_cursor(source, spelling):
|
|
"""Obtain a cursor from a source object.
|
|
|
|
This provides a convenient search mechanism to find a cursor with specific
|
|
spelling within a source. The first argument can be either a
|
|
TranslationUnit or Cursor instance.
|
|
|
|
If the cursor is not found, None is returned.
|
|
"""
|
|
# Convenience for calling on a TU.
|
|
root_cursor = source if isinstance(source, Cursor) else source.cursor
|
|
|
|
for cursor in root_cursor.walk_preorder():
|
|
if cursor.spelling == spelling:
|
|
return cursor
|
|
|
|
return None
|
|
|
|
|
|
def get_cursors(source, spelling):
|
|
"""Obtain all cursors from a source object with a specific spelling.
|
|
|
|
This provides a convenient search mechanism to find all cursors with
|
|
specific spelling within a source. The first argument can be either a
|
|
TranslationUnit or Cursor instance.
|
|
|
|
If no cursors are found, an empty list is returned.
|
|
"""
|
|
# Convenience for calling on a TU.
|
|
root_cursor = source if isinstance(source, Cursor) else source.cursor
|
|
|
|
cursors = []
|
|
for cursor in root_cursor.walk_preorder():
|
|
if cursor.spelling == spelling:
|
|
cursors.append(cursor)
|
|
|
|
return cursors
|
|
|
|
|
|
__all__ = [
|
|
"get_cursor",
|
|
"get_cursors",
|
|
"get_tu",
|
|
]
|