We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eefd2ea commit a120fb7Copy full SHA for a120fb7
library/std/src/sync/rwlock/tests.rs
@@ -21,6 +21,10 @@ fn smoke() {
21
}
22
23
#[test]
24
+// FIXME: On macOS we use a provenance-incorrect implementation and Miri
25
+// catches that issue with a chance of around 1/1000.
26
+// See <https://github.com/rust-lang/rust/issues/121950> for details.
27
+#[cfg_attr(all(miri, target_os = "macos"), ignore)]
28
fn frob() {
29
const N: u32 = 10;
30
const M: usize = if cfg!(miri) { 100 } else { 1000 };
0 commit comments