Skip to content

Commit d453327

Browse files
committed
Auto merge of #130025 - Urgau:missing_docs-expect, r=<try>
Also emit `missing_docs` lint with `--test` to fulfil expectations This PR removes the "test harness" suppression of the `missing_docs` lint to be able to fulfil `#[expect]` (expectations) as it is now "relevant". I think the goal was to maybe avoid false-positive while linting on public items under `#[cfg(test)]` but with effective visibility we should no longer have any false-positive. Another possibility would be to query the lint level and only emit the lint if it's of expect level, but that is even more hacky. Fixes #130021 try-job: x86_64-gnu-aux
2 parents 085744b + ae661dd commit d453327

File tree

5 files changed

+21
-11
lines changed

5 files changed

+21
-11
lines changed

compiler/rustc_lint/src/builtin.rs

+4-11
Original file line numberDiff line numberDiff line change
@@ -426,12 +426,6 @@ impl MissingDoc {
426426
article: &'static str,
427427
desc: &'static str,
428428
) {
429-
// If we're building a test harness, then warning about
430-
// documentation is probably not really relevant right now.
431-
if cx.sess().opts.test {
432-
return;
433-
}
434-
435429
// Only check publicly-visible items, using the result from the privacy pass.
436430
// It's an option so the crate root can also use this function (it doesn't
437431
// have a `NodeId`).
@@ -444,11 +438,10 @@ impl MissingDoc {
444438
let attrs = cx.tcx.hir().attrs(cx.tcx.local_def_id_to_hir_id(def_id));
445439
let has_doc = attrs.iter().any(has_doc);
446440
if !has_doc {
447-
cx.emit_span_lint(
448-
MISSING_DOCS,
449-
cx.tcx.def_span(def_id),
450-
BuiltinMissingDoc { article, desc },
451-
);
441+
let sp = cx.tcx.def_span(def_id);
442+
if !sp.is_dummy() {
443+
cx.emit_span_lint(MISSING_DOCS, sp, BuiltinMissingDoc { article, desc });
444+
}
452445
}
453446
}
454447
}

library/alloc/src/slice.rs

+2
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ pub(crate) mod hack {
9696
// We shouldn't add inline attribute to this since this is used in
9797
// `vec!` macro mostly and causes perf regression. See #71204 for
9898
// discussion and perf results.
99+
#[allow(missing_docs)]
99100
pub fn into_vec<T, A: Allocator>(b: Box<[T], A>) -> Vec<T, A> {
100101
unsafe {
101102
let len = b.len();
@@ -105,6 +106,7 @@ pub(crate) mod hack {
105106
}
106107

107108
#[cfg(not(no_global_oom_handling))]
109+
#[allow(missing_docs)]
108110
#[inline]
109111
pub fn to_vec<T: ConvertVec, A: Allocator>(s: &[T], alloc: A) -> Vec<T, A> {
110112
T::to_vec(s, alloc)

library/alloc/src/string.rs

+1
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,7 @@ impl String {
508508
// NB see the slice::hack module in slice.rs for more information
509509
#[inline]
510510
#[cfg(test)]
511+
#[allow(missing_docs)]
511512
pub fn from_str(_: &str) -> String {
512513
panic!("not available with cfg(test)");
513514
}

library/std/src/io/buffered/bufreader.rs

+1
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ impl<R: ?Sized> BufReader<R> {
267267
// This is only used by a test which asserts that the initialization-tracking is correct.
268268
#[cfg(test)]
269269
impl<R: ?Sized> BufReader<R> {
270+
#[allow(missing_docs)]
270271
pub fn initialized(&self) -> usize {
271272
self.buf.initialized()
272273
}
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Make sure that `#[expect(missing_docs)]` is always correctly fulfilled.
2+
3+
//@ check-pass
4+
//@ revisions: lib bin test
5+
//@ [lib]compile-flags: --crate-type lib
6+
//@ [bin]compile-flags: --crate-type bin
7+
//@ [test]compile-flags: --test
8+
9+
#[expect(missing_docs)]
10+
pub fn foo() {}
11+
12+
#[cfg(bin)]
13+
fn main() {}

0 commit comments

Comments
 (0)