Skip to content

Commit 44d3fb3

Browse files
committed
Auto merge of #56846 - pietroalbini:rollup, r=pietroalbini
Rollup of 7 pull requests Successful merges: - #56677 (#[must_use] on traits in stdlib) - #56679 (overhaul external doc attribute diagnostics) - #56682 (Update the stdsimd submodule) - #56691 (fix install broken link) - #56710 (Always set the RDRAND and RDSEED features on SGX) - #56713 (Test capacity of ZST vector) - #56841 (Add some unit tests to compiletest) Failed merges: r? @ghost
2 parents 0a1b226 + 3566812 commit 44d3fb3

File tree

14 files changed

+233
-20
lines changed

14 files changed

+233
-20
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ standard library, and documentation.
1010

1111
Read ["Installation"] from [The Book].
1212

13-
["Installation"]: https://doc.rust-lang.org/book/second-edition/ch01-01-installation.html
13+
["Installation"]: https://doc.rust-lang.org/book/ch01-01-installation.html
1414
[The Book]: https://doc.rust-lang.org/book/index.html
1515

1616
## Building from Source

src/liballoc/tests/vec.rs

+5
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ fn test_reserve() {
7979
assert!(v.capacity() >= 33)
8080
}
8181

82+
#[test]
83+
fn test_zst_capacity() {
84+
assert_eq!(Vec::<()>::new().capacity(), usize::max_value());
85+
}
86+
8287
#[test]
8388
fn test_extend() {
8489
let mut v = Vec::new();

src/libcore/future/future.rs

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ use task::{Poll, LocalWaker};
3333
///
3434
/// When using a future, you generally won't call `poll` directly, but instead
3535
/// `await!` the value.
36+
#[must_use]
3637
pub trait Future {
3738
/// The result of the `Future`.
3839
type Output;

src/libcore/iter/iterator.rs

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ fn _assert_is_object_safe(_: &dyn Iterator<Item=()>) {}
9898
message="`{Self}` is not an iterator"
9999
)]
100100
#[doc(spotlight)]
101+
#[must_use]
101102
pub trait Iterator {
102103
/// The type of the elements being iterated over.
103104
#[stable(feature = "rust1", since = "1.0.0")]

src/libcore/ops/function.rs

+3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
label="expected an `Fn<{Args}>` closure, found `{Self}`",
7373
)]
7474
#[fundamental] // so that regex can rely that `&str: !FnMut`
75+
#[must_use]
7576
pub trait Fn<Args> : FnMut<Args> {
7677
/// Performs the call operation.
7778
#[unstable(feature = "fn_traits", issue = "29625")]
@@ -150,6 +151,7 @@ pub trait Fn<Args> : FnMut<Args> {
150151
label="expected an `FnMut<{Args}>` closure, found `{Self}`",
151152
)]
152153
#[fundamental] // so that regex can rely that `&str: !FnMut`
154+
#[must_use]
153155
pub trait FnMut<Args> : FnOnce<Args> {
154156
/// Performs the call operation.
155157
#[unstable(feature = "fn_traits", issue = "29625")]
@@ -228,6 +230,7 @@ pub trait FnMut<Args> : FnOnce<Args> {
228230
label="expected an `FnOnce<{Args}>` closure, found `{Self}`",
229231
)]
230232
#[fundamental] // so that regex can rely that `&str: !FnMut`
233+
#[must_use]
231234
pub trait FnOnce<Args> {
232235
/// The returned type after the call operator is used.
233236
#[stable(feature = "fn_once_output", since = "1.12.0")]

src/librustc_target/spec/x86_64_fortanix_unknown_sgx.rs

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ pub fn target() -> Result<Target, String> {
4949
max_atomic_width: Some(64),
5050
panic_strategy: PanicStrategy::Abort,
5151
cpu: "x86-64".into(),
52+
features: "+rdrnd,+rdseed".into(),
5253
position_independent_executables: true,
5354
pre_link_args: iter::once(
5455
(LinkerFlavor::Gcc, PRE_LINK_ARGS.iter().cloned().map(String::from).collect())

src/libsyntax/ext/expand.rs

+56-12
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use ast::{self, Block, Ident, NodeId, PatKind, Path};
11+
use ast::{self, Block, Ident, LitKind, NodeId, PatKind, Path};
1212
use ast::{MacStmtStyle, StmtKind, ItemKind};
1313
use attr::{self, HasAttrs};
1414
use source_map::{ExpnInfo, MacroBang, MacroAttribute, dummy_spanned, respan};
@@ -1535,21 +1535,65 @@ impl<'a, 'b> Folder for InvocationCollector<'a, 'b> {
15351535
let item = attr::mk_list_item(DUMMY_SP, include_ident, include_info);
15361536
items.push(dummy_spanned(ast::NestedMetaItemKind::MetaItem(item)));
15371537
}
1538-
Err(ref e) if e.kind() == ErrorKind::InvalidData => {
1539-
self.cx.span_err(
1540-
at.span,
1541-
&format!("{} wasn't a utf-8 file", filename.display()),
1542-
);
1543-
}
15441538
Err(e) => {
1545-
self.cx.span_err(
1546-
at.span,
1547-
&format!("couldn't read {}: {}", filename.display(), e),
1548-
);
1539+
let lit = it
1540+
.meta_item()
1541+
.and_then(|item| item.name_value_literal())
1542+
.unwrap();
1543+
1544+
if e.kind() == ErrorKind::InvalidData {
1545+
self.cx
1546+
.struct_span_err(
1547+
lit.span,
1548+
&format!("{} wasn't a utf-8 file", filename.display()),
1549+
)
1550+
.span_label(lit.span, "contains invalid utf-8")
1551+
.emit();
1552+
} else {
1553+
let mut err = self.cx.struct_span_err(
1554+
lit.span,
1555+
&format!("couldn't read {}: {}", filename.display(), e),
1556+
);
1557+
err.span_label(lit.span, "couldn't read file");
1558+
1559+
if e.kind() == ErrorKind::NotFound {
1560+
err.help("external doc paths are relative to the crate root");
1561+
}
1562+
1563+
err.emit();
1564+
}
15491565
}
15501566
}
15511567
} else {
1552-
items.push(noop_fold_meta_list_item(it, self));
1568+
let mut err = self.cx.struct_span_err(
1569+
it.span,
1570+
&format!("expected path to external documentation"),
1571+
);
1572+
1573+
// Check if the user erroneously used `doc(include(...))` syntax.
1574+
let literal = it.meta_item_list().and_then(|list| {
1575+
if list.len() == 1 {
1576+
list[0].literal().map(|literal| &literal.node)
1577+
} else {
1578+
None
1579+
}
1580+
});
1581+
1582+
let (path, applicability) = match &literal {
1583+
Some(LitKind::Str(path, ..)) => {
1584+
(path.to_string(), Applicability::MachineApplicable)
1585+
}
1586+
_ => (String::from("<path>"), Applicability::HasPlaceholders),
1587+
};
1588+
1589+
err.span_suggestion_with_applicability(
1590+
it.span,
1591+
"provide a file path with `=`",
1592+
format!("include = \"{}\"", path),
1593+
applicability,
1594+
);
1595+
1596+
err.emit();
15531597
}
15541598
}
15551599

src/stdsimd

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#![deny(unused_must_use)]
2+
#![feature(futures_api, pin, arbitrary_self_types)]
3+
4+
use std::iter::Iterator;
5+
use std::future::Future;
6+
7+
use std::task::{Poll, LocalWaker};
8+
use std::pin::Pin;
9+
use std::unimplemented;
10+
11+
struct MyFuture;
12+
13+
impl Future for MyFuture {
14+
type Output = u32;
15+
16+
fn poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<u32> {
17+
Poll::Pending
18+
}
19+
}
20+
21+
fn iterator() -> impl Iterator {
22+
std::iter::empty::<u32>()
23+
}
24+
25+
fn future() -> impl Future {
26+
MyFuture
27+
}
28+
29+
fn square_fn_once() -> impl FnOnce(u32) -> u32 {
30+
|x| x * x
31+
}
32+
33+
fn square_fn_mut() -> impl FnMut(u32) -> u32 {
34+
|x| x * x
35+
}
36+
37+
fn square_fn() -> impl Fn(u32) -> u32 {
38+
|x| x * x
39+
}
40+
41+
fn main() {
42+
iterator(); //~ ERROR unused implementer of `std::iter::Iterator` that must be used
43+
future(); //~ ERROR unused implementer of `std::future::Future` that must be used
44+
square_fn_once(); //~ ERROR unused implementer of `std::ops::FnOnce` that must be used
45+
square_fn_mut(); //~ ERROR unused implementer of `std::ops::FnMut` that must be used
46+
square_fn(); //~ ERROR unused implementer of `std::ops::Fn` that must be used
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
�(

src/test/ui/extern/external-doc-error.rs

+26-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,31 @@
22

33
#![feature(external_doc)]
44

5-
#[doc(include = "not-a-file.md")] //~ ERROR: couldn't read
6-
pub struct SomeStruct;
5+
#[doc(include = "not-a-file.md")]
6+
pub struct SomeStruct; //~^ ERROR couldn't read
7+
//~| HELP external doc paths are relative to the crate root
8+
9+
#[doc(include = "auxiliary/invalid-utf8.txt")]
10+
pub struct InvalidUtf8; //~^ ERROR wasn't a utf-8 file
11+
12+
#[doc(include)]
13+
pub struct MissingPath; //~^ ERROR expected path
14+
//~| HELP provide a file path with `=`
15+
//~| SUGGESTION include = "<path>"
16+
17+
#[doc(include("../README.md"))]
18+
pub struct InvalidPathSyntax; //~^ ERROR expected path
19+
//~| HELP provide a file path with `=`
20+
//~| SUGGESTION include = "../README.md"
21+
22+
#[doc(include = 123)]
23+
pub struct InvalidPathType; //~^ ERROR expected path
24+
//~| HELP provide a file path with `=`
25+
//~| SUGGESTION include = "<path>"
26+
27+
#[doc(include(123))]
28+
pub struct InvalidPathSyntaxAndType; //~^ ERROR expected path
29+
//~| HELP provide a file path with `=`
30+
//~| SUGGESTION include = "<path>"
731

832
fn main() {}
+36-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,40 @@
11
error: couldn't read $DIR/not-a-file.md: $FILE_NOT_FOUND_MSG (os error 2)
2-
--> $DIR/external-doc-error.rs:5:1
2+
--> $DIR/external-doc-error.rs:5:17
33
|
4-
LL | #[doc(include = "not-a-file.md")] //~ ERROR: couldn't read
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4+
LL | #[doc(include = "not-a-file.md")]
5+
| ^^^^^^^^^^^^^^^ couldn't read file
6+
|
7+
= help: external doc paths are relative to the crate root
8+
9+
error: $DIR/auxiliary/invalid-utf8.txt wasn't a utf-8 file
10+
--> $DIR/external-doc-error.rs:9:17
11+
|
12+
LL | #[doc(include = "auxiliary/invalid-utf8.txt")]
13+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ contains invalid utf-8
14+
15+
error: expected path to external documentation
16+
--> $DIR/external-doc-error.rs:12:7
17+
|
18+
LL | #[doc(include)]
19+
| ^^^^^^^ help: provide a file path with `=`: `include = "<path>"`
20+
21+
error: expected path to external documentation
22+
--> $DIR/external-doc-error.rs:17:7
23+
|
24+
LL | #[doc(include("../README.md"))]
25+
| ^^^^^^^^^^^^^^^^^^^^^^^ help: provide a file path with `=`: `include = "../README.md"`
26+
27+
error: expected path to external documentation
28+
--> $DIR/external-doc-error.rs:22:7
29+
|
30+
LL | #[doc(include = 123)]
31+
| ^^^^^^^^^^^^^ help: provide a file path with `=`: `include = "<path>"`
32+
33+
error: expected path to external documentation
34+
--> $DIR/external-doc-error.rs:27:7
35+
|
36+
LL | #[doc(include(123))]
37+
| ^^^^^^^^^^^^ help: provide a file path with `=`: `include = "<path>"`
638

7-
error: aborting due to previous error
39+
error: aborting due to 6 previous errors
840

src/tools/compiletest/src/header.rs

+26
Original file line numberDiff line numberDiff line change
@@ -873,3 +873,29 @@ fn parse_normalization_string(line: &mut &str) -> Option<String> {
873873
*line = &line[end + 1..];
874874
Some(result)
875875
}
876+
877+
#[test]
878+
fn test_parse_normalization_string() {
879+
let mut s = "normalize-stderr-32bit: \"something (32 bits)\" -> \"something ($WORD bits)\".";
880+
let first = parse_normalization_string(&mut s);
881+
assert_eq!(first, Some("something (32 bits)".to_owned()));
882+
assert_eq!(s, " -> \"something ($WORD bits)\".");
883+
884+
// Nothing to normalize (No quotes)
885+
let mut s = "normalize-stderr-32bit: something (32 bits) -> something ($WORD bits).";
886+
let first = parse_normalization_string(&mut s);
887+
assert_eq!(first, None);
888+
assert_eq!(s, r#"normalize-stderr-32bit: something (32 bits) -> something ($WORD bits)."#);
889+
890+
// Nothing to normalize (Only a single quote)
891+
let mut s = "normalize-stderr-32bit: \"something (32 bits) -> something ($WORD bits).";
892+
let first = parse_normalization_string(&mut s);
893+
assert_eq!(first, None);
894+
assert_eq!(s, "normalize-stderr-32bit: \"something (32 bits) -> something ($WORD bits).");
895+
896+
// Nothing to normalize (Three quotes)
897+
let mut s = "normalize-stderr-32bit: \"something (32 bits)\" -> \"something ($WORD bits).";
898+
let first = parse_normalization_string(&mut s);
899+
assert_eq!(first, Some("something (32 bits)".to_owned()));
900+
assert_eq!(s, " -> \"something ($WORD bits).");
901+
}

src/tools/compiletest/src/util.rs

+28
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ pub fn matches_os(triple: &str, name: &str) -> bool {
8686
}
8787
panic!("Cannot determine OS from triple");
8888
}
89+
90+
/// Determine the architecture from `triple`
8991
pub fn get_arch(triple: &str) -> &'static str {
9092
let triple: Vec<_> = triple.split('-').collect();
9193
for &(triple_arch, arch) in ARCH_TABLE {
@@ -151,3 +153,29 @@ impl PathBufExt for PathBuf {
151153
}
152154
}
153155
}
156+
157+
#[test]
158+
#[should_panic(expected = "Cannot determine Architecture from triple")]
159+
fn test_get_arch_failure() {
160+
get_arch("abc");
161+
}
162+
163+
#[test]
164+
fn test_get_arch() {
165+
assert_eq!("x86_64", get_arch("x86_64-unknown-linux-gnu"));
166+
assert_eq!("x86_64", get_arch("amd64"));
167+
}
168+
169+
#[test]
170+
#[should_panic(expected = "Cannot determine OS from triple")]
171+
fn test_matches_os_failure() {
172+
matches_os("abc", "abc");
173+
}
174+
175+
#[test]
176+
fn test_matches_os() {
177+
assert!(matches_os("x86_64-unknown-linux-gnu", "linux"));
178+
assert!(matches_os("wasm32-unknown-unknown", "emscripten"));
179+
assert!(matches_os("wasm32-unknown-unknown", "wasm32-bare"));
180+
assert!(!matches_os("wasm32-unknown-unknown", "windows"));
181+
}

0 commit comments

Comments
 (0)