Skip to content

Commit

Permalink
Rollup merge of #71711 - Mark-Simulacrum:deignore-tests, r=nikomatsakis
Browse files Browse the repository at this point in the history
Updates to some ignored tests

This removes or fixes some ignored test cases.

cc #13745
  • Loading branch information
Dylan-DPC authored May 4, 2020
2 parents 4bde46e + bfed215 commit 04776b1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 34 deletions.
File renamed without changes.
14 changes: 7 additions & 7 deletions src/test/rustdoc/issue-27362.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// aux-build:issue-27362.rs
// aux-build:issue-27362-aux.rs
// ignore-cross-compile
// ignore-test This test fails on beta/stable #32019

extern crate issue_27362;
pub use issue_27362 as quux;
extern crate issue_27362_aux;

// @matches issue_27362/quux/fn.foo.html '//pre' "pub const fn foo()"
// @matches issue_27362/quux/fn.bar.html '//pre' "pub const unsafe fn bar()"
// @matches issue_27362/quux/struct.Foo.html '//code' "const unsafe fn baz()"
pub use issue_27362_aux::*;

// @matches issue_27362/fn.foo.html '//pre' "pub const fn foo()"
// @matches issue_27362/fn.bar.html '//pre' "pub const unsafe fn bar()"
// @matches issue_27362/struct.Foo.html '//code' "const unsafe fn baz()"
14 changes: 0 additions & 14 deletions src/test/ui/fully-qualified-type/fully-qualified-type-name3.rs

This file was deleted.

13 changes: 0 additions & 13 deletions src/test/ui/issues/issue-17025.rs

This file was deleted.

0 comments on commit 04776b1

Please sign in to comment.