aboutsummaryrefslogtreecommitdiff
path: root/llvm/docs/CommandGuide/lit.rst
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2014-08-21 18:52:58 +0000
committerEric Fiselier <eric@efcs.ca>2014-08-21 18:52:58 +0000
commit5b0e0e94363b86f8d99339c9ab7e03888ee00b76 (patch)
tree5b2e5529231992dc299c9315fbf94532abeb3272 /llvm/docs/CommandGuide/lit.rst
parent216e0c06177a6976afc779abd54fe1bfa3b889c8 (diff)
downloadllvm-5b0e0e94363b86f8d99339c9ab7e03888ee00b76.zip
llvm-5b0e0e94363b86f8d99339c9ab7e03888ee00b76.tar.gz
llvm-5b0e0e94363b86f8d99339c9ab7e03888ee00b76.tar.bz2
[LIT] Remove documentation for method since it does not exist
llvm-svn: 216204
Diffstat (limited to 'llvm/docs/CommandGuide/lit.rst')
-rw-r--r--llvm/docs/CommandGuide/lit.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/docs/CommandGuide/lit.rst b/llvm/docs/CommandGuide/lit.rst
index 099c756..2708e9d 100644
--- a/llvm/docs/CommandGuide/lit.rst
+++ b/llvm/docs/CommandGuide/lit.rst
@@ -315,14 +315,6 @@ executed, two important global variables are predefined:
**root** The root configuration. This is the top-most :program:`lit` configuration in
the project.
- **on_clone** The config is actually cloned for every subdirectory inside a test
- suite, to allow local configuration on a per-directory basis. The *on_clone*
- variable can be set to a Python function which will be called whenever a
- configuration is cloned (for a subdirectory). The function should takes three
- arguments: (1) the parent configuration, (2) the new configuration (which the
- *on_clone* function will generally modify), and (3) the test path to the new
- directory being scanned.
-
**pipefail** Normally a test using a shell pipe fails if any of the commands
on the pipe fail. If this is not desired, setting this variable to false
makes the test fail only if the last command in the pipe fails.