diff options
author | Jordan Rose <jordan_rose@apple.com> | 2017-10-14 04:01:27 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2017-10-14 04:01:27 +0000 |
commit | e55d9a1403081913978ddde084d49844e752489a (patch) | |
tree | 94fbcce102a033fdac3bbf58a4acea8d12c90a4c /llvm/docs/CommandGuide | |
parent | a33a17605dbda09912cc7daac7db3914044a1a46 (diff) | |
download | bcm5719-llvm-e55d9a1403081913978ddde084d49844e752489a.tar.gz bcm5719-llvm-e55d9a1403081913978ddde084d49844e752489a.zip |
Revert "lit.py: Add new %{shared_output(LABEL)} substitution"
This reverts r315697 and my ill-fated attempts to fix it on Windows.
I'll try again when I get access to a Windows machine.
llvm-svn: 315793
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/lit.rst | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/llvm/docs/CommandGuide/lit.rst b/llvm/docs/CommandGuide/lit.rst index 57d804478fc..fbe1a9ab184 100644 --- a/llvm/docs/CommandGuide/lit.rst +++ b/llvm/docs/CommandGuide/lit.rst @@ -395,18 +395,17 @@ PRE-DEFINED SUBSTITUTIONS :program:`lit` provides various patterns that can be used with the RUN command. These are defined in TestRunner.py. The base set of substitutions are: - ======================= ============== - Macro Substitution - ======================= ============== - %s source path (path to the file currently being run) - %S source dir (directory of the file currently being run) - %p same as %S - %{pathsep} path separator - %t temporary file name unique to the test - %T temporary directory unique to the test - %{shared_output(LABEL)} temporary file name, identified by "LABEL", shared across all tests - %% % - ======================= ============== + ========== ============== + Macro Substitution + ========== ============== + %s source path (path to the file currently being run) + %S source dir (directory of the file currently being run) + %p same as %S + %{pathsep} path separator + %t temporary file name unique to the test + %T temporary directory unique to the test + %% % + ========== ============== Other substitutions are provided that are variations on this base set and further substitution patterns can be defined by each test module. See the |