Skip to content

Commit 04776b1

Browse files
authored
Rollup merge of rust-lang#71711 - Mark-Simulacrum:deignore-tests, r=nikomatsakis
Updates to some ignored tests This removes or fixes some ignored test cases. cc rust-lang#13745
2 parents 4bde46e + bfed215 commit 04776b1

File tree

4 files changed

+7
-34
lines changed

4 files changed

+7
-34
lines changed

src/test/rustdoc/issue-27362.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// aux-build:issue-27362.rs
1+
// aux-build:issue-27362-aux.rs
22
// ignore-cross-compile
3-
// ignore-test This test fails on beta/stable #32019
43

5-
extern crate issue_27362;
6-
pub use issue_27362 as quux;
4+
extern crate issue_27362_aux;
75

8-
// @matches issue_27362/quux/fn.foo.html '//pre' "pub const fn foo()"
9-
// @matches issue_27362/quux/fn.bar.html '//pre' "pub const unsafe fn bar()"
10-
// @matches issue_27362/quux/struct.Foo.html '//code' "const unsafe fn baz()"
6+
pub use issue_27362_aux::*;
7+
8+
// @matches issue_27362/fn.foo.html '//pre' "pub const fn foo()"
9+
// @matches issue_27362/fn.bar.html '//pre' "pub const unsafe fn bar()"
10+
// @matches issue_27362/struct.Foo.html '//code' "const unsafe fn baz()"

src/test/ui/fully-qualified-type/fully-qualified-type-name3.rs

-14
This file was deleted.

src/test/ui/issues/issue-17025.rs

-13
This file was deleted.

0 commit comments

Comments
 (0)