diff options
author | Sergey Matveev <earthdok@google.com> | 2013-05-30 12:37:52 +0000 |
---|---|---|
committer | Sergey Matveev <earthdok@google.com> | 2013-05-30 12:37:52 +0000 |
commit | 52d65ab72dcdb3b5de8b84743537355067819c31 (patch) | |
tree | 55f28e4640747b92259f07b7504e61c6c3f29545 /docs | |
parent | d01fb9e212d989ff14e84a332c5b18f8a23d4b35 (diff) | |
download | external_llvm-52d65ab72dcdb3b5de8b84743537355067819c31.zip external_llvm-52d65ab72dcdb3b5de8b84743537355067819c31.tar.gz external_llvm-52d65ab72dcdb3b5de8b84743537355067819c31.tar.bz2 |
Fix incorrect parameter name in LIT docs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182926 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CommandGuide/lit.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CommandGuide/lit.rst b/docs/CommandGuide/lit.rst index 40c7646..2f6d9a1 100644 --- a/docs/CommandGuide/lit.rst +++ b/docs/CommandGuide/lit.rst @@ -283,7 +283,7 @@ executed, two important global variables are predefined: discover and run tests in the test suite. Generally this will be a builtin test format available from the *lit.formats* module. - **test_src_root** The filesystem path to the test suite root. For out-of-dir + **test_source_root** The filesystem path to the test suite root. For out-of-dir builds this is the directory that will be scanned for tests. **test_exec_root** For out-of-dir builds, the path to the test suite root inside @@ -320,7 +320,7 @@ TEST DISCOVERY ~~~~~~~~~~~~~~ Once test suites are located, :program:`lit` recursively traverses the source -directory (following *test_src_root*) looking for tests. When :program:`lit` +directory (following *test_source_root*) looking for tests. When :program:`lit` enters a sub-directory, it first checks to see if a nested test suite is defined in that directory. If so, it loads that test suite recursively, otherwise it instantiates a local test config for the directory (see |