diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-12-11 16:02:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 16:02:49 +0100 |
| commit | ceae1dd3f847682a9b2bba347ea2f85b1fb6c684 (patch) | |
| tree | 4b49e4b86dcd1be1bf05a3138970c4d6f1b47952 /src/test/rustdoc-ui | |
| parent | 94ac197585939106216f110d50f6ef731134fb30 (diff) | |
| parent | 2b6987d91fda4d47415914acc54afc26be837ac2 (diff) | |
| download | rust-ceae1dd3f847682a9b2bba347ea2f85b1fb6c684.tar.gz rust-ceae1dd3f847682a9b2bba347ea2f85b1fb6c684.zip | |
Rollup merge of #91717 - inashivb:issue-91713, r=jyn514
Add deprecation warning for --passes Issue https://github.com/rust-lang/rust/issues/91713 mentored by ```@jyn514```
Diffstat (limited to 'src/test/rustdoc-ui')
| -rw-r--r-- | src/test/rustdoc-ui/issue-91713.rs | 3 | ||||
| -rw-r--r-- | src/test/rustdoc-ui/issue-91713.stderr | 4 | ||||
| -rw-r--r-- | src/test/rustdoc-ui/issue-91713.stdout | 31 |
3 files changed, 38 insertions, 0 deletions
diff --git a/src/test/rustdoc-ui/issue-91713.rs b/src/test/rustdoc-ui/issue-91713.rs new file mode 100644 index 00000000000..b7057d868c2 --- /dev/null +++ b/src/test/rustdoc-ui/issue-91713.rs @@ -0,0 +1,3 @@ +// check-pass +// compile-flags: --passes list +// error-pattern: the `passes` flag is deprecated diff --git a/src/test/rustdoc-ui/issue-91713.stderr b/src/test/rustdoc-ui/issue-91713.stderr new file mode 100644 index 00000000000..70c22b3c01e --- /dev/null +++ b/src/test/rustdoc-ui/issue-91713.stderr @@ -0,0 +1,4 @@ +warning: the `passes` flag is deprecated + | + = note: see issue #44136 <https://github.com/rust-lang/rust/issues/44136> for more information + diff --git a/src/test/rustdoc-ui/issue-91713.stdout b/src/test/rustdoc-ui/issue-91713.stdout new file mode 100644 index 00000000000..d0372d4945f --- /dev/null +++ b/src/test/rustdoc-ui/issue-91713.stdout @@ -0,0 +1,31 @@ +Available passes for running rustdoc: +check_doc_test_visibility - run various visibility-related lints on doctests + strip-hidden - strips all `#[doc(hidden)]` items from the output + unindent-comments - removes excess indentation on comments in order for markdown to like it + strip-private - strips all private items from a crate which cannot be seen externally, implies strip-priv-imports + strip-priv-imports - strips all private import statements (`use`, `extern crate`) from a crate + propagate-doc-cfg - propagates `#[doc(cfg(...))]` to child items +collect-intra-doc-links - resolves intra-doc links +check-code-block-syntax - validates syntax inside Rust code blocks + collect-trait-impls - retrieves trait impls for items in the crate +calculate-doc-coverage - counts the number of items with and without documentation +check-invalid-html-tags - detects invalid HTML tags in doc comments + check-bare-urls - detects URLs that are not hyperlinks + +Default passes for rustdoc: + collect-trait-impls + unindent-comments +check_doc_test_visibility + strip-hidden (when not --document-hidden-items) + strip-private (when not --document-private-items) + strip-priv-imports (when --document-private-items) +collect-intra-doc-links +check-code-block-syntax +check-invalid-html-tags + propagate-doc-cfg + check-bare-urls + +Passes run with `--show-coverage`: + strip-hidden (when not --document-hidden-items) + strip-private (when not --document-private-items) +calculate-doc-coverage |
