Skip to content

Commit ec7c800

Browse files
committed
Remove pretty-expanded from failing tests
This commit removes pretty-expanded from all tests that wind up calling panic! one way or another now that its internals are unstable.
1 parent 65e3f03 commit ec7c800

File tree

792 files changed

+0
-792
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

792 files changed

+0
-792
lines changed

src/test/run-pass-fulldeps/rename-directory.rs

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// because it needs TempDir, which is in extra
1313

1414
// ignore-android
15-
// pretty-expanded FIXME #23616
1615

1716
#![feature(rustc_private, path_ext)]
1817

src/test/run-pass/argument-passing.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111

12-
// pretty-expanded FIXME #23616
1312

1413
struct X {
1514
x: isize

src/test/run-pass/arith-2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111

1212

13-
// pretty-expanded FIXME #23616
1413

1514
pub fn main() {
1615
let i32_c: isize = 0x10101010;

src/test/run-pass/arith-unsigned.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![allow(type_limits)]
1413

src/test/run-pass/artificial-block.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
fn f() -> isize { { return 3; } }
1413

src/test/run-pass/as-precedence.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
fn main() {
1413
assert_eq!(3 as usize * 3, 9);

src/test/run-pass/asm-in-out-operand.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![feature(asm)]
1413

src/test/run-pass/asm-out-assign.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![feature(asm)]
1413

src/test/run-pass/assign-assign.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// Issue 483 - Assignment expressions result in nil
12-
// pretty-expanded FIXME #23616
1312

1413
fn test_assign() {
1514
let mut x: isize;

src/test/run-pass/assignability-trait.rs

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// making method calls, but only if there aren't any matches without
1313
// it.
1414

15-
// pretty-expanded FIXME #23616
1615

1716
#![feature(unboxed_closures)]
1817

src/test/run-pass/associated-types-basic.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![feature(core)]
1413

src/test/run-pass/associated-types-binding-in-trait.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test a case where the associated type binding (to `bool`, in this
1212
// case) is derived from the trait definition. Issue #21636.
1313

14-
// pretty-expanded FIXME #23616
1514

1615
use std::vec;
1716

src/test/run-pass/associated-types-bound.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test equality constrai32s on associated types in a where clause.
1212

13-
// pretty-expanded FIXME #23616
1413

1514
pub trait ToI32 {
1615
fn to_i32(&self) -> i32;

src/test/run-pass/associated-types-constant-type.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
trait SignedUnsigned {
1413
type Opposite;

src/test/run-pass/associated-types-doubleendediterator-object.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![allow(unknown_features)]
1413
#![feature(box_syntax)]

src/test/run-pass/associated-types-enum-field-named.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test associated types appearing in struct-like enum variants.
1212

13-
// pretty-expanded FIXME #23616
1413

1514
use self::VarValue::*;
1615

src/test/run-pass/associated-types-enum-field-numbered.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test associated types appearing in tuple-like enum variants.
1212

13-
// pretty-expanded FIXME #23616
1413

1514
use self::VarValue::*;
1615

src/test/run-pass/associated-types-in-default-method.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
trait Get {
1413
type Value;

src/test/run-pass/associated-types-in-fn.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
trait Get {
1413
type Value;

src/test/run-pass/associated-types-in-impl-generics.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
trait Get {
1413
type Value;

src/test/run-pass/associated-types-in-inherent-method.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
trait Get {
1413
type Value;

src/test/run-pass/associated-types-issue-20220.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test references to `Self::Item` in the trait. Issue #20220.
1212

13-
// pretty-expanded FIXME #23616
1413

1514
use std::vec;
1615

src/test/run-pass/associated-types-issue-21212.rs

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
// where clauses in the environment which in turn required normalizing
1414
// `Self::Input`.
1515

16-
// pretty-expanded FIXME #23616
1716

1817
pub trait Parser {
1918
type Input;

src/test/run-pass/associated-types-iterator-binding.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
fn pairwise_sub<T:DoubleEndedIterator<Item=isize>>(mut t: T) -> isize {
1413
let mut result = 0;

src/test/run-pass/associated-types-project-from-type-param-via-bound-in-where-clause.rs

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// `Item` originates in a where-clause, not the declaration of
1313
// `T`. Issue #20300.
1414

15-
// pretty-expanded FIXME #23616
1615

1716
#![feature(core)]
1817

src/test/run-pass/associated-types-projection-from-known-type-in-impl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test where the impl self type uses a projection from a constant type.
1212

13-
// pretty-expanded FIXME #23616
1413

1514
trait Int
1615
{

src/test/run-pass/associated-types-projection-in-supertrait.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test that we are handle to correctly handle a projection type
1212
// that appears in a supertrait bound. Issue #20559.
1313

14-
// pretty-expanded FIXME #23616
1514

1615
trait A
1716
{

src/test/run-pass/associated-types-ref-in-struct-literal.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test associated type references in a struct literal. Issue #20535.
1212

13-
// pretty-expanded FIXME #23616
1413

1514
pub trait Foo {
1615
type Bar;

src/test/run-pass/associated-types-return.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test equality constraints on associated types in a where clause.
1212

13-
// pretty-expanded FIXME #23616
1413

1514
pub trait Foo {
1615
type A;

src/test/run-pass/associated-types-simple.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
trait Get {
1413
type Value;

src/test/run-pass/associated-types-stream.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test references to the trait `Stream` in the bounds for associated
1212
// types defined on `Stream`. Issue #20551.
1313

14-
// pretty-expanded FIXME #23616
1514

1615
trait Stream {
1716
type Car;

src/test/run-pass/associated-types-struct-field-named.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test that we correctly normalize the type of a struct field
1212
// which has an associated type.
1313

14-
// pretty-expanded FIXME #23616
1514

1615
pub trait UnifyKey {
1716
type Value;

src/test/run-pass/associated-types-struct-field-numbered.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Test that we correctly normalize the type of a struct field
1212
// which has an associated type.
1313

14-
// pretty-expanded FIXME #23616
1514

1615
pub trait UnifyKey {
1716
type Value;

src/test/run-pass/associated-types-sugar-path.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test paths to associated types using the type-parameter-only sugar.
1212

13-
// pretty-expanded FIXME #23616
1413

1514
pub trait Foo {
1615
type A;

src/test/run-pass/attr-main-2.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![feature(main)]
1413

src/test/run-pass/attr-no-drop-flag-size.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![feature(unsafe_destructor)]
1413
#![feature(unsafe_no_drop_flag)]

src/test/run-pass/auto-loop.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
pub fn main() {
1413
let mut sum = 0;

src/test/run-pass/auto-ref-sliceable.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111

12-
// pretty-expanded FIXME #23616
1312

1413
trait Pushable<T> {
1514
fn push_val(&mut self, t: T);

src/test/run-pass/autobind.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111

12-
// pretty-expanded FIXME #23616
1312

1413
fn f<T>(x: Vec<T>) -> T { return x.into_iter().next().unwrap(); }
1514

src/test/run-pass/autoderef-method-on-trait.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![allow(unknown_features)]
1413
#![feature(box_syntax)]

src/test/run-pass/autoderef-method-priority.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![allow(unknown_features)]
1413
#![feature(box_syntax)]

src/test/run-pass/autoderef-method-twice-but-not-thrice.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![allow(unknown_features)]
1413
#![feature(box_syntax)]

src/test/run-pass/autoderef-method-twice.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![allow(unknown_features)]
1413
#![feature(box_syntax)]

src/test/run-pass/autoderef-method.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![allow(unknown_features)]
1413
#![feature(box_syntax)]

src/test/run-pass/autoref-intermediate-types-issue-3585.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111

12-
// pretty-expanded FIXME #23616
1312

1413
#![allow(unknown_features)]
1514
#![feature(box_syntax)]

src/test/run-pass/big-literals.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
#![feature(core)]
1413

src/test/run-pass/binary-minus-without-space.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Check that issue #954 stays fixed
1212

13-
// pretty-expanded FIXME #23616
1413

1514
pub fn main() {
1615
match -1 { -1 => {}, _ => panic!("wat") }

src/test/run-pass/bind-by-move.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
use std::sync::Arc;
1413
fn dispose(_x: Arc<bool>) { }

src/test/run-pass/bind-field-short-with-modifiers.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
pub fn main() {
1413
struct Foo { x: isize, y: isize }

src/test/run-pass/block-arg-call-as.rs

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

11-
// pretty-expanded FIXME #23616
1211

1312
fn asBlock<F>(f: F) -> usize where F: FnOnce() -> usize {
1413
return f();

0 commit comments

Comments
 (0)