diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2014-03-10 21:58:12 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2014-03-10 21:58:12 +0000 |
| commit | 91b42983094772a59c85fc14712fa29c3aea8534 (patch) | |
| tree | e7ba7e8c7e298e3497888409d14101da4f83211f | |
| parent | b8a82c295d5340f54c383aa153e1d4952a33f7c3 (diff) | |
| download | bcm5719-llvm-91b42983094772a59c85fc14712fa29c3aea8534.tar.gz bcm5719-llvm-91b42983094772a59c85fc14712fa29c3aea8534.zip | |
[lit] Add a README.txt.
- Also, update MANIFEST.in and utils/check-sdist.
llvm-svn: 203497
| -rw-r--r-- | llvm/utils/lit/MANIFEST.in | 2 | ||||
| -rw-r--r-- | llvm/utils/lit/README.txt | 8 | ||||
| -rwxr-xr-x | llvm/utils/lit/utils/check-sdist | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/llvm/utils/lit/MANIFEST.in b/llvm/utils/lit/MANIFEST.in index 6491a02dd13..7a732b384d6 100644 --- a/llvm/utils/lit/MANIFEST.in +++ b/llvm/utils/lit/MANIFEST.in @@ -1,7 +1,9 @@ include TODO lit.py recursive-include tests * +recursive-include examples * global-exclude *pyc global-exclude *~ prune tests/Output prune tests/*/Output prune tests/*/*/Output +prune tests/*/*/*/Output diff --git a/llvm/utils/lit/README.txt b/llvm/utils/lit/README.txt new file mode 100644 index 00000000000..8cf48404759 --- /dev/null +++ b/llvm/utils/lit/README.txt @@ -0,0 +1,8 @@ +=============================== + lit - A Software Testing Tool +=============================== + +lit is a portable tool for executing LLVM and Clang style test suites, +summarizing their results, and providing indication of failures. lit is designed +to be a lightweight testing tool with as simple a user interface as possible. + diff --git a/llvm/utils/lit/utils/check-sdist b/llvm/utils/lit/utils/check-sdist index 6186446aba1..743a971fbeb 100755 --- a/llvm/utils/lit/utils/check-sdist +++ b/llvm/utils/lit/utils/check-sdist @@ -12,6 +12,7 @@ find . | \ grep -v '^\./dist' | \ grep -v '^\./utils' | \ grep -v '^\./venv' | \ + grep -v '^\./notes.txt' | \ grep -v '^\./lit.egg-info' | \ grep -v '^\./lit/ExampleTests' | \ grep -v '/Output' | \ |

