We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35ed590 commit 866aeaeCopy full SHA for 866aeae
README.md
@@ -48,6 +48,13 @@ Now you can run your project in Miri:
48
3. If you have a binary project, you can run it through Miri using `cargo
49
+nightly miri run`.
50
51
+You can pass arguments to Miri after the first `--`, and pass arguments to the
52
+interpreted program or test suite after the second `--`. For example, `cargo
53
++nightly miri run -- -Zmiri-disable-validation` runs the program without
54
+validation of basic type invariants and references. `cargo +nightly miri test
55
+-- -- filter` passes `filter` to the test suite the same way `cargo test filter`
56
+would.
57
+
58
When running code via `cargo miri`, the `miri` config flag is set. You can
59
use this to exclude test cases that will fail under Miri because they do things
60
Miri does not support:
0 commit comments