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.
2 parents 1889b9f + 08180f0 commit 1e14e66Copy full SHA for 1e14e66
README.md
@@ -48,12 +48,12 @@ 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
-When running code via `cargo miri`, the `cargo-miri` feature is set. You can
+When running code via `cargo miri`, the `miri` config flag is set. You can
52
use this to exclude test cases that will fail under Miri because they do things
53
Miri does not support:
54
55
```rust
56
-#[cfg(not(feature = "cargo-miri"))]
+#[cfg(not(miri))]
57
#[test]
58
fn does_not_work_on_miri() {
59
let x = 0u8;
0 commit comments