diff options
Diffstat (limited to 'bindings/python/README.txt')
-rw-r--r-- | bindings/python/README.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bindings/python/README.txt b/bindings/python/README.txt index 742cf8fbb8fc5..8a0bf99b30e3d 100644 --- a/bindings/python/README.txt +++ b/bindings/python/README.txt @@ -5,11 +5,12 @@ This directory implements Python bindings for Clang. You may need to alter LD_LIBRARY_PATH so that the Clang library can be -found. The unit tests are designed to be run with 'nosetests'. For example: +found. The unit tests are designed to be run with any standard test +runner. For example: -- $ env PYTHONPATH=$(echo ~/llvm/tools/clang/bindings/python/) \ LD_LIBRARY_PATH=$(llvm-config --libdir) \ - nosetests -v + python -m unittest discover -v tests.cindex.test_index.test_create ... ok ... |