-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make extract-tests.py use the same test directives as rustdoc's test extractor #11362
Comments
When you mention If |
@wting I'd like to add I'm not sure the best way to fix this actually because of the way these tests are run. Currently what happens is that they are extracted to a directory and then the Probably the simplest way to get this working would be to modify Ultimately though I would like all the standalone documentation infrastructure to be folded into rustdoc. |
Supporting should_fail is #3509, fwiw. |
Alright, I've updated |
…=alexcrichton Refactored the file quite a bit, I can add unit tests if desired. There's a few changes from the previous version's behavior: - destination directory will be created if it doesn't exist - strings and file is written as unicode I have a few questions, but will ask them in #11362.
new lint: `implied_bounds_in_impls` Closes rust-lang#10849 A new lint that looks for explicitly specified bounds that are already implied by other bounds in `impl Trait` return position types. One example, as shown in the linked example, would be ```rs fn foo<T>(x: T) -> impl Deref<Target = T> + DerefMut<Target = T> { Box::new(x) } ``` `DerefMut<Target = T>` requires `Deref<Target = T>` to be wellformed, so specifying `Deref` there is unnecessary. This currently "ignores" (i.e., does not lint at all) transitive supertrait bounds (e.g. `trait A {} trait B: A {} trait C: B {}`, then having an `impl A + C` type), because that seems a bit more difficult and I think this isn't technically a blocker. It leads to FNs, but shouldn't bring any FPs changelog: new lint [`implied_bounds_in_impls`]
Right now to rustdoc supports
ignore
for marking tests as broken (same as rustc) andshould_fail
for indicating tests that are supposed to fail. The script we use for extracting tests from the standalone docs supportsxfail-test
for marking broken tests,ignore
andnotrust
for completely ignoring the code block, and doesn't supportshould_fail
at all.Make extract-tests.py behave the same as rustdoc.
Alternately, just process all our standalone docs through rustdoc.
The text was updated successfully, but these errors were encountered: