Skip to content

Commit 0ec9ae9

Browse files
committed
Docs: Why no Miri or Loom?
1 parent ddf8ea0 commit 0ec9ae9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,16 +561,18 @@ cmake --build build_debug --config Debug
561561
build_debug/fork_union_test_cpp20
562562
```
563563

564-
For Rust, use the following command:
564+
For Rust, use the following commands:
565565

566566
```bash
567567
rustup toolchain install # for Alloc API
568-
cargo miri test # to catch UBs
569568
cargo build --features numa # for NUMA support on Linux
570569
cargo test --release # to run the tests fast
571570
cargo test --features numa --release # for NUMA tests on Linux
572571
```
573572

573+
Rust provides a lot of tooling for concurrency testing, like Miri and Loom.
574+
Most of it, however, is not applicable in this case, as the core logic is implemented in C++.
575+
574576
To automatically detect the Minimum Supported Rust Version (MSRV):
575577

576578
```sh

0 commit comments

Comments
 (0)