diff options
| author | Peter Jaszkowiak <p.jaszkow@gmail.com> | 2021-12-13 23:49:29 -0700 |
|---|---|---|
| committer | Peter Jaszkowiak <p.jaszkow@gmail.com> | 2021-12-15 21:29:04 -0700 |
| commit | 02b94b7922d6938da3bde07cedd5f02823a72d97 (patch) | |
| tree | 9a1ebca037ea0e01e51b4e18788f7d09f655bebd /src/test/rustdoc/inline_local | |
| parent | 69ac533527025fffa37ad1bc4d82b3bc65f90264 (diff) | |
| download | rust-02b94b7922d6938da3bde07cedd5f02823a72d97.tar.gz rust-02b94b7922d6938da3bde07cedd5f02823a72d97.zip | |
rustdoc: remove `--passes` and `--no-defaults`
- flags no longer function, see #44136 - adjust tests to match new behavior - removed test issue-42875 (covered regression with --no-defaults) - moved input-format to removed flags - move all removed flags to bottom - note flag removal in command help - remove DefaultPassOption enum (now redundant with `show_coverage`)
Diffstat (limited to 'src/test/rustdoc/inline_local')
| -rw-r--r-- | src/test/rustdoc/inline_local/glob-extern-document-private-items.rs (renamed from src/test/rustdoc/inline_local/glob-extern-no-defaults.rs) | 2 | ||||
| -rw-r--r-- | src/test/rustdoc/inline_local/glob-private-document-private-items.rs (renamed from src/test/rustdoc/inline_local/glob-private-no-defaults.rs) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/rustdoc/inline_local/glob-extern-no-defaults.rs b/src/test/rustdoc/inline_local/glob-extern-document-private-items.rs index 55c75dfe27b..a2f0d65efce 100644 --- a/src/test/rustdoc/inline_local/glob-extern-no-defaults.rs +++ b/src/test/rustdoc/inline_local/glob-extern-document-private-items.rs @@ -1,4 +1,4 @@ -// compile-flags: --no-defaults +// compile-flags: --document-private-items #![crate_name = "foo"] diff --git a/src/test/rustdoc/inline_local/glob-private-no-defaults.rs b/src/test/rustdoc/inline_local/glob-private-document-private-items.rs index ac854ac4320..f16d21ecdb1 100644 --- a/src/test/rustdoc/inline_local/glob-private-no-defaults.rs +++ b/src/test/rustdoc/inline_local/glob-private-document-private-items.rs @@ -1,4 +1,4 @@ -// compile-flags: --no-defaults +// compile-flags: --document-private-items #![crate_name = "foo"] |
