From ff97569dd9c55ef8a89e9201a03ed41a482e030c Mon Sep 17 00:00:00 2001 From: Oliver Scherer Date: Fri, 30 Nov 2018 16:20:07 +0100 Subject: [PATCH] Update doc-ui tests --- src/test/rustdoc-ui/doc-without-codeblock.rs | 4 ++++ src/test/rustdoc-ui/doc-without-codeblock.stderr | 8 ++++---- src/test/rustdoc-ui/intra-link-span-ice-55723.rs | 3 ++- src/test/rustdoc-ui/private-item-doc-test.rs | 1 + 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/test/rustdoc-ui/doc-without-codeblock.rs b/src/test/rustdoc-ui/doc-without-codeblock.rs index e047b272c416..645deff334b8 100644 --- a/src/test/rustdoc-ui/doc-without-codeblock.rs +++ b/src/test/rustdoc-ui/doc-without-codeblock.rs @@ -1,3 +1,4 @@ +//~ ERROR Missing code example in this documentation // Copyright 2018 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. @@ -11,10 +12,13 @@ #![deny(missing_doc_code_examples)] /// Some docs. +//~^ ERROR Missing code example in this documentation pub struct Foo; /// And then, the princess died. +//~^ ERROR Missing code example in this documentation pub mod foo { /// Or maybe not because she saved herself! + //~^ ERROR Missing code example in this documentation pub fn bar() {} } diff --git a/src/test/rustdoc-ui/doc-without-codeblock.stderr b/src/test/rustdoc-ui/doc-without-codeblock.stderr index ba5bb7fc0b11..f3efc6540504 100644 --- a/src/test/rustdoc-ui/doc-without-codeblock.stderr +++ b/src/test/rustdoc-ui/doc-without-codeblock.stderr @@ -1,25 +1,25 @@ error: Missing code example in this documentation | note: lint level defined here - --> $DIR/doc-without-codeblock.rs:11:9 + --> $DIR/doc-without-codeblock.rs:12:9 | LL | #![deny(missing_doc_code_examples)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ error: Missing code example in this documentation - --> $DIR/doc-without-codeblock.rs:13:1 + --> $DIR/doc-without-codeblock.rs:14:1 | LL | /// Some docs. | ^^^^^^^^^^^^^^ error: Missing code example in this documentation - --> $DIR/doc-without-codeblock.rs:16:1 + --> $DIR/doc-without-codeblock.rs:18:1 | LL | /// And then, the princess died. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: Missing code example in this documentation - --> $DIR/doc-without-codeblock.rs:18:5 + --> $DIR/doc-without-codeblock.rs:21:5 | LL | /// Or maybe not because she saved herself! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/src/test/rustdoc-ui/intra-link-span-ice-55723.rs b/src/test/rustdoc-ui/intra-link-span-ice-55723.rs index 12e59a4813f8..c701548faaa9 100644 --- a/src/test/rustdoc-ui/intra-link-span-ice-55723.rs +++ b/src/test/rustdoc-ui/intra-link-span-ice-55723.rs @@ -17,8 +17,9 @@ // https://github.com/rust-lang/rust/issues/55723 /// ## For example: -/// +/// /// (arr[i]) +//~^ ERROR `[i]` cannot be resolved, ignoring it... pub fn test_ice() { unimplemented!(); } diff --git a/src/test/rustdoc-ui/private-item-doc-test.rs b/src/test/rustdoc-ui/private-item-doc-test.rs index 5a13fe359f52..771dc3bd3511 100644 --- a/src/test/rustdoc-ui/private-item-doc-test.rs +++ b/src/test/rustdoc-ui/private-item-doc-test.rs @@ -16,5 +16,6 @@ mod foo { /// ``` /// assert!(false); /// ``` + //~^^^^^ ERROR Documentation test in private item fn bar() {} }