diff options
| author | bors <bors@rust-lang.org> | 2018-10-26 17:26:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-10-26 17:26:56 +0000 |
| commit | 3e6f30ec3e6bda159063fcd126dcb14725fef92d (patch) | |
| tree | b70731fbfb445b1531d9bec123ecebcffcf2a0db /src/test/rustdoc | |
| parent | bf962e2552cb60a75fec5bded24da071df7f8482 (diff) | |
| parent | eb2953022420517859c67c6e57ef59a14dd2fee8 (diff) | |
| download | rust-3e6f30ec3e6bda159063fcd126dcb14725fef92d.tar.gz rust-3e6f30ec3e6bda159063fcd126dcb14725fef92d.zip | |
Auto merge of #55382 - kennytm:rollup, r=kennytm
Rollup of 21 pull requests Successful merges: - #54816 (Don't try to promote already promoted out temporaries) - #54824 (Cleanup rustdoc tests with `@!has` and `@!matches`) - #54921 (Add line numbers option to rustdoc) - #55167 (Add a "cheap" mode for `compute_missing_ctors`.) - #55258 (Fix Rustdoc ICE when checking blanket impls) - #55264 (Compile the libstd we distribute with -Ccodegen-unit=1) - #55271 (Unimplement ExactSizeIterator for MIR traversing iterators) - #55292 (Macro diagnostics tweaks) - #55298 (Point at macro definition when no rules expect token) - #55301 (List allowed tokens after macro fragments) - #55302 (Extend the impl_stable_hash_for! macro for miri.) - #55325 (Fix link to macros chapter) - #55343 (rustbuild: fix remap-debuginfo when building a release) - #55346 (Shrink `Statement`.) - #55358 (Remove redundant clone (2)) - #55370 (Update mailmap for estebank) - #55375 (Typo fixes in configure_cmake comments) - #55378 (rustbuild: use configured linker to build boostrap) - #55379 (validity: assert that unions are non-empty) - #55383 (Use `SmallVec` for the queue in `coerce_unsized`.) - #55391 (bootstrap: clean up a few clippy findings)
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/deprecated-impls.rs | 2 | ||||
| -rw-r--r-- | src/test/rustdoc/dont-show-const-contents.rs (renamed from src/test/rustdoc/escape-rust-expr.rs) | 8 | ||||
| -rw-r--r-- | src/test/rustdoc/empty-section.rs | 2 | ||||
| -rw-r--r-- | src/test/rustdoc/hidden-methods.rs | 4 | ||||
| -rw-r--r-- | src/test/rustdoc/issue-13698.rs | 2 | ||||
| -rw-r--r-- | src/test/rustdoc/issue-46767.rs | 3 | ||||
| -rw-r--r-- | src/test/rustdoc/issue-55001.rs | 31 | ||||
| -rw-r--r-- | src/test/rustdoc/manual_impl.rs | 1 | ||||
| -rw-r--r-- | src/test/rustdoc/playground-empty.rs | 2 | ||||
| -rw-r--r-- | src/test/rustdoc/redirect.rs | 3 | ||||
| -rw-r--r-- | src/test/rustdoc/unneeded-trait-implementations-title.rs | 2 |
11 files changed, 47 insertions, 13 deletions
diff --git a/src/test/rustdoc/deprecated-impls.rs b/src/test/rustdoc/deprecated-impls.rs index bcf0645766b..3fb83bff916 100644 --- a/src/test/rustdoc/deprecated-impls.rs +++ b/src/test/rustdoc/deprecated-impls.rs @@ -109,7 +109,7 @@ impl Bar for Foo2 { // @has - '//*[@class="stab deprecated"]' 'Deprecated since 1.0.5: fn_def_with_doc' // @has - 'fn_def_with_doc short' - // @!has - 'fn_def_with full' + // @!has - 'fn_def_with_doc full' fn fn_def_with_doc() {} // @has - '//*[@class="stab deprecated"]' 'Deprecated since 1.0.6: fn_def_without_doc' diff --git a/src/test/rustdoc/escape-rust-expr.rs b/src/test/rustdoc/dont-show-const-contents.rs index 4594eb95ea1..1392c62b4ab 100644 --- a/src/test/rustdoc/escape-rust-expr.rs +++ b/src/test/rustdoc/dont-show-const-contents.rs @@ -8,8 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// Test that we HTML-escape Rust expressions, where HTML special chars -// can occur, and we know it's definitely not markup. +// Test that the contents of constants are not displayed as part of the +// documentation. -// @!has escape_rust_expr/constant.CONST_S.html '//pre[@class="rust const"]' '"<script>"' -pub const CONST_S: &'static str = "<script>"; +// @!has dont_show_const_contents/constant.CONST_S.html 'dont show this' +pub const CONST_S: &'static str = "dont show this"; diff --git a/src/test/rustdoc/empty-section.rs b/src/test/rustdoc/empty-section.rs index 3748313593f..11a027a13f7 100644 --- a/src/test/rustdoc/empty-section.rs +++ b/src/test/rustdoc/empty-section.rs @@ -15,6 +15,6 @@ pub struct Foo; // @has foo/struct.Foo.html -// @!has - '//*[@class="synthetic-implementations"]' 'Auto Trait Implementations' +// @!has - 'Auto Trait Implementations' impl !Send for Foo {} impl !Sync for Foo {} diff --git a/src/test/rustdoc/hidden-methods.rs b/src/test/rustdoc/hidden-methods.rs index 18f5f086cd1..aea5f44e2a7 100644 --- a/src/test/rustdoc/hidden-methods.rs +++ b/src/test/rustdoc/hidden-methods.rs @@ -28,12 +28,12 @@ pub mod hidden { // @has foo/struct.Foo.html // @!has - 'Methods' -// @!has - 'impl Foo' +// @!has - '//code' 'impl Foo' // @!has - 'this_should_be_hidden' pub use hidden::Foo; // @has foo/struct.Bar.html // @!has - 'Methods' -// @!has - 'impl Bar' +// @!has - '//code' 'impl Bar' // @!has - 'this_should_be_hidden' pub use hidden::Bar; diff --git a/src/test/rustdoc/issue-13698.rs b/src/test/rustdoc/issue-13698.rs index cf9b30a0fe9..b0efee511bc 100644 --- a/src/test/rustdoc/issue-13698.rs +++ b/src/test/rustdoc/issue-13698.rs @@ -22,5 +22,5 @@ pub trait Bar { fn bar(&self) {} } -// @!has issue_13698/struct.Foo.html '//*[@id="method.foo"]' 'fn bar' +// @!has issue_13698/struct.Foo.html '//*[@id="method.bar"]' 'fn bar' impl Bar for Foo {} diff --git a/src/test/rustdoc/issue-46767.rs b/src/test/rustdoc/issue-46767.rs index 855de150b0a..1e6b697cd5f 100644 --- a/src/test/rustdoc/issue-46767.rs +++ b/src/test/rustdoc/issue-46767.rs @@ -15,4 +15,5 @@ mod private { } pub use self::private::Enum::*; -// @!has foo/index.html '//a/@href' './private/index.html' +// @!has-dir foo/private +// @!has foo/index.html '//a/@href' 'private/index.html' diff --git a/src/test/rustdoc/issue-55001.rs b/src/test/rustdoc/issue-55001.rs new file mode 100644 index 00000000000..f6c7f9a3d08 --- /dev/null +++ b/src/test/rustdoc/issue-55001.rs @@ -0,0 +1,31 @@ +// Regression test for issue #55001. Previously, we would incorrectly +// cache certain trait selection results when checking for blanket impls, +// resulting in an ICE when we tried to confirm the cached ParamCandidate +// against an obligation. + +pub struct DefaultAllocator; +pub struct Standard; +pub struct Inner; + +pub trait Rand {} + +pub trait Distribution<T> {} +pub trait Allocator<N> {} + +impl<T> Rand for T where Standard: Distribution<T> {} + +impl<A> Distribution<Point<A>> for Standard +where +DefaultAllocator: Allocator<A>, +Standard: Distribution<A> {} + +impl Distribution<Inner> for Standard {} + + +pub struct Point<N> +where DefaultAllocator: Allocator<N> +{ + field: N +} + +fn main() {} diff --git a/src/test/rustdoc/manual_impl.rs b/src/test/rustdoc/manual_impl.rs index 54a8a764833..db48a652523 100644 --- a/src/test/rustdoc/manual_impl.rs +++ b/src/test/rustdoc/manual_impl.rs @@ -35,7 +35,6 @@ pub trait T { // @has - '//*[@class="docblock"]' 'Docs associated with the S1 trait a_method implementation.' // @!has - '//*[@class="docblock"]' 'Docs associated with the trait a_method definition.' // @has - '//*[@class="docblock"]' 'Docs associated with the trait b_method definition.' -// @has - '//*[@class="docblock"]' 'Docs associated with the trait b_method definition.' // @has - '//*[@class="docblock"]' 'Docs associated with the trait c_method definition.' // @!has - '//*[@class="docblock"]' 'There is another line' // @has - '//*[@class="docblock"]' 'Read more' diff --git a/src/test/rustdoc/playground-empty.rs b/src/test/rustdoc/playground-empty.rs index 00881a62dd0..2b3120fa5b4 100644 --- a/src/test/rustdoc/playground-empty.rs +++ b/src/test/rustdoc/playground-empty.rs @@ -12,6 +12,8 @@ #![doc(html_playground_url = "")] +// compile-flags:-Z unstable-options --playground-url https://play.rust-lang.org/ + //! module docs //! //! ``` diff --git a/src/test/rustdoc/redirect.rs b/src/test/rustdoc/redirect.rs index 98e66e8c024..c20dd815d8c 100644 --- a/src/test/rustdoc/redirect.rs +++ b/src/test/rustdoc/redirect.rs @@ -43,6 +43,7 @@ mod private_no_inline { // @has redirect/index.html // @has - '//code' 'pub use private_no_inline::Qux' -// @!has - '//code/a' 'Qux' +// @!has - '//a' 'Qux' +// @!has redirect/struct.Qux.html #[doc(no_inline)] pub use private_no_inline::Qux; diff --git a/src/test/rustdoc/unneeded-trait-implementations-title.rs b/src/test/rustdoc/unneeded-trait-implementations-title.rs index 2c074179e32..c87b533b9d4 100644 --- a/src/test/rustdoc/unneeded-trait-implementations-title.rs +++ b/src/test/rustdoc/unneeded-trait-implementations-title.rs @@ -12,4 +12,4 @@ pub struct Bar; -// @!has foo/struct.Bar.html '//*[@id="implementations"]' +// @count foo/struct.Bar.html '//*[@id="implementations"]' 0 |
