about summary refs log tree commit diff
path: root/library
diff options
context:
space:
mode:
authorAsuna <SpriteOvO@gmail.com>2024-11-16 21:58:10 +0100
committerAmanieu d'Antras <amanieu@gmail.com>2024-11-27 09:30:19 +0800
commitecf58b32ff82eade5b60c1a8cb2e0ac5386764ca (patch)
tree91463506f27e33eacb1ba5f865c6b0f49821bf04 /library
parent2f608b514bf951efa92fd2f07d0d9e8a2f8c5b9f (diff)
downloadrust-ecf58b32ff82eade5b60c1a8cb2e0ac5386764ca.tar.gz
rust-ecf58b32ff82eade5b60c1a8cb2e0ac5386764ca.zip
Recommend using `run-docker.sh` instead of `run.sh` in `CONTRIBUTING.md`
Diffstat (limited to 'library')
-rw-r--r--library/stdarch/CONTRIBUTING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/stdarch/CONTRIBUTING.md b/library/stdarch/CONTRIBUTING.md
index 4212abcd75d..95583e3f72e 100644
--- a/library/stdarch/CONTRIBUTING.md
+++ b/library/stdarch/CONTRIBUTING.md
@@ -70,7 +70,7 @@ to improve the documentation of `stdarch`!
 
 # Alternative Testing Instructions
 
-It is generally recommended that you use `ci/run.sh` to run the tests.
+It is generally recommended that you use `ci/run-docker.sh` to run the tests.
 However this might not work for you, e.g. if you are on Windows.
 
 In that case you can fall back to running `cargo +nightly test` and `cargo +nightly test --release -p core_arch` for testing the code generation.
@@ -79,7 +79,7 @@ In particular you need to set the `TARGET` environment variable as you would for
 In addition you need to set `RUSTCFLAGS` (need the `C`) to indicate target features, e.g. `RUSTCFLAGS="-C -target-features=+avx2"`.
 You can also set `-C -target-cpu=native` if you're "just" developing against your current CPU.
 
-Be warned that when you use these alternative instructions, [things may go less smoothly than they would with `ci/run.sh`][ci-run-good], e.g. instruction generation tests may fail because the disassembler named them differently, e.g. it may generate `vaesenc` instead of `aesenc` instructions despite them behaving the same.
+Be warned that when you use these alternative instructions, [things may go less smoothly than they would with `ci/run-docker.sh`][ci-run-good], e.g. instruction generation tests may fail because the disassembler named them differently, e.g. it may generate `vaesenc` instead of `aesenc` instructions despite them behaving the same.
 Also these instructions execute less tests than would normally be done, so don't be surprised that when you eventually pull-request some errors may show up for tests not covered here.