[llvm] [test] Fix documentation of %{fs-sep} et al (PR #95088)

Jay Foad via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 11 02:12:58 PDT 2024


https://github.com/jayfoad created https://github.com/llvm/llvm-project/pull/95088

None

>From d6f4ddeb4cb272599b215498a53c5ffb1efa4dab Mon Sep 17 00:00:00 2001
From: Jay Foad <jay.foad at amd.com>
Date: Tue, 11 Jun 2024 10:12:19 +0100
Subject: [PATCH] [test] Fix documentation of %{fs-sep} et al

---
 llvm/docs/TestingGuide.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/llvm/docs/TestingGuide.rst b/llvm/docs/TestingGuide.rst
index 89499d8b937d5..c35e58bc53b67 100644
--- a/llvm/docs/TestingGuide.rst
+++ b/llvm/docs/TestingGuide.rst
@@ -741,16 +741,16 @@ RUN lines:
 
    Expands to the path separator, i.e. ``:`` (or ``;`` on Windows).
 
-``${fs-src-root}``
+``%{fs-src-root}``
    Expands to the root component of file system paths for the source directory,
    i.e. ``/`` on Unix systems or ``C:\`` (or another drive) on Windows.
 
-``${fs-tmp-root}``
+``%{fs-tmp-root}``
    Expands to the root component of file system paths for the test's temporary
    directory, i.e. ``/`` on Unix systems or ``C:\`` (or another drive) on
    Windows.
 
-``${fs-sep}``
+``%{fs-sep}``
    Expands to the file system separator, i.e. ``/`` or ``\`` on Windows.
 
 ``%/s, %/S, %/t, %/T``



More information about the llvm-commits mailing list