You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Doctests will now be tested when running `cargo test --doc --target other_target`, this may result in some amount of breakage due to would-be-failing doctests now being tested.
138
138
139
+
Failing tests can be disabled by annotating the doctest with `ignore-<target>`:
140
+
```rust
141
+
/// ```ignore-x86_64
142
+
/// panic!("something")
143
+
/// ```
144
+
/// pub fn my_function() { }
145
+
```
146
+
139
147
### Platform Support
140
148
141
149
-[Add new Tier-3 targets `loongarch32-unknown-none` and `loongarch32-unknown-none-softfloat`](https://github.com/rust-lang/rust/pull/142053)
0 commit comments