about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorUrgau <urgau@numericable.fr>2025-06-11 18:37:48 +0200
committerUrgau <urgau@numericable.fr>2025-06-15 17:20:08 +0200
commit268fbfed477a20cb7efa04b8c28982f46f16a4a4 (patch)
treea11c050fdb31f916e22f8d11cc65e3a47ee72a36 /src/doc/rustc-dev-guide
parent810d99e7b5116ba00dd2e8da872ccead0b06f4ef (diff)
downloadrust-268fbfed477a20cb7efa04b8c28982f46f16a4a4.tar.gz
rust-268fbfed477a20cb7efa04b8c28982f46f16a4a4.zip
Un-remap `rustc-dev` component paths
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/tests/ui.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/ui.md b/src/doc/rustc-dev-guide/src/tests/ui.md
index 25d3efdbb82..9e4a11044e8 100644
--- a/src/doc/rustc-dev-guide/src/tests/ui.md
+++ b/src/doc/rustc-dev-guide/src/tests/ui.md
@@ -113,6 +113,8 @@ Compiletest makes the following replacements on the compiler output:
 - The base directory where the test's output goes is replaced with
   `$TEST_BUILD_DIR`. This only comes up in a few rare circumstances. Example:
   `/path/to/rust/build/x86_64-unknown-linux-gnu/test/ui`
+- The real directory to the standard library source is replaced with `$SRC_DIR_REAL`.
+- The real directory to the compiler source is replaced with `$COMPILER_DIR_REAL`.
 - Tabs are replaced with `\t`.
 - Backslashes (`\`) are converted to forward slashes (`/`) within paths (using a
   heuristic). This helps normalize differences with Windows-style paths.