hanchenye-llvm-project/clang/bindings/python
Vitaly Buka 772adb7d9b [NFC] Don't run python binding tests with sanitizers
Almost any sanitizer can try to install interceptors.
2020-10-29 23:48:08 -07:00
..
clang
examples/cindex
tests [NFC] Don't run python binding tests with sanitizers 2020-10-29 23:48:08 -07:00
README.txt

README.txt

//===----------------------------------------------------------------------===//
// Clang Python Bindings
//===----------------------------------------------------------------------===//

This directory implements Python bindings for Clang.

You may need to set CLANG_LIBRARY_PATH so that the Clang library can be
found. The unit tests are designed to be run with any standard test
runner. For example:
--
$ env PYTHONPATH=$(echo ~/llvm/tools/clang/bindings/python/) \
      CLANG_LIBRARY_PATH=$(llvm-config --libdir) \
  python -m unittest discover -v
tests.cindex.test_index.test_create ... ok
...

OK
--