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 | 8dbcb356f768f7cbecc6d61263e9baa1b3083d7c (patch) | |
tree | 2d9e4cb866a4c2e31bb3938274c2adbf4d924da9 | |
parent | 69cd121dd9945429b565b6a5eb8719130de880a7 (diff) | |
download | bcm5719-llvm-8dbcb356f768f7cbecc6d61263e9baa1b3083d7c.tar.gz bcm5719-llvm-8dbcb356f768f7cbecc6d61263e9baa1b3083d7c.zip |
Fix incorrect parameter name in LIT docs.
llvm-svn: 182926
-rw-r--r-- | llvm/docs/CommandGuide/lit.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/CommandGuide/lit.rst b/llvm/docs/CommandGuide/lit.rst index 40c7646260a..2f6d9a15561 100644 --- a/llvm/docs/CommandGuide/lit.rst +++ b/llvm/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 |