Skip to content

Commit db6e3aa

Browse files
committed
tests: ensure disabled tests have a reason
1 parent 762ecf8 commit db6e3aa

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

tests/ui/bootstrap/self-test/a.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
//! Not used by compiler, this is used by bootstrap cli self-test.
2-
//@ ignore-test
2+
//@ ignore-test (used by bootstrap)

tests/ui/bootstrap/self-test/b.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
//! Not used by compiler, used by bootstrap cli self-test.
2-
//@ ignore-test
2+
//@ ignore-test (used by bootstrap)

tests/ui/lint/unknown-lints/other.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ ignore-test
1+
//@ ignore-test (auxiliary)
22

33
// Companion to allow-in-other-module.rs
44

tests/ui/precondition-checks/read.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes
33
//@ error-pattern: unsafe precondition(s) violated: ptr::read requires
44
//@ revisions: null misaligned
5-
//@ ignore-test
5+
//@ ignore-test (unimplemented)
66

77
use std::ptr;
88

tests/ui/precondition-checks/write.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes
33
//@ error-pattern: unsafe precondition(s) violated: ptr::write requires
44
//@ revisions: null misaligned
5-
//@ ignore-test
5+
//@ ignore-test (unimplemented)
66

77
use std::ptr;
88

tests/ui/precondition-checks/write_bytes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes
33
//@ error-pattern: unsafe precondition(s) violated: ptr::write requires
44
//@ revisions: null misaligned
5-
//@ ignore-test
5+
//@ ignore-test (unimplemented)
66

77
use std::ptr;
88

tests/ui/traits/next-solver/object-soundness-requires-generalization.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ compile-flags: -Znext-solver
2-
//@ ignore-test
2+
//@ ignore-test (see #114196)
33

44
trait Trait {
55
type Gat<'lt>;

0 commit comments

Comments
 (0)