From 5a751c631c5bcfa13fb6d9f6b1dad67465a78775 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 27 Sep 2016 18:58:50 +0000 Subject: [PATCH] [lit] Add instructions to run lit's test suite - Patch by Brian Gesiak. - https://reviews.llvm.org/D24968 llvm-svn: 282525 --- llvm/utils/lit/README.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/llvm/utils/lit/README.txt b/llvm/utils/lit/README.txt index 8cf484047596..3d294c81ea4d 100644 --- a/llvm/utils/lit/README.txt +++ b/llvm/utils/lit/README.txt @@ -6,3 +6,19 @@ 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. +===================== + Contributing to lit +===================== + +Please read the TODO file in this directory for ideas on what to work on. +Before submitting patches, run the test suite to ensure nothing has regressed: + + # From within your LLVM source directory. + utils/lit/lit.py \ + --path /path/to/your/llvm/build/bin \ + utils/lit/tests + +Note that lit's tests depend on 'not' and 'FileCheck', LLVM utilities. +You will need to have built LLVM tools in order to run lit's test suite +successfully. +