Skip to content

Commit

Permalink
Unignore a few tests
Browse files Browse the repository at this point in the history
Also, remove one that has an exact duplicate.
  • Loading branch information
Jakub Wieczorek committed Oct 16, 2014
1 parent b6e0d3a commit f3d46bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 25 deletions.
4 changes: 0 additions & 4 deletions src/test/compile-fail/non-constant-expr-for-fixed-len-vec.rs
Expand Up @@ -8,10 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-test
//
// Ignored because of an ICE at the moment.

// Check that non-constant exprs do fail as count in fixed length vec type

fn main() {
Expand Down
13 changes: 0 additions & 13 deletions src/test/run-pass/dead-code-one-arm-if.rs

This file was deleted.

2 changes: 0 additions & 2 deletions src/test/run-pass/parse-fail.rs
Expand Up @@ -10,8 +10,6 @@

#![allow(unreachable_code)]

// ignore-test #12920

fn dont_call_me() { fail!(); println!("{}", 1); }

pub fn main() { }
10 changes: 4 additions & 6 deletions src/test/run-pass/trait-inheritance-cast.rs
Expand Up @@ -8,28 +8,26 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-test
// Testing that supertrait methods can be called on subtrait object types
// It's not clear yet that we want this

trait Foo {
fn f() -> int;
fn f(&self) -> int;
}

trait Bar : Foo {
fn g() -> int;
fn g(&self) -> int;
}

struct A {
x: int
}

impl Foo for A {
fn f() -> int { 10 }
fn f(&self) -> int { 10 }
}

impl Bar for A {
fn g() -> int { 20 }
fn g(&self) -> int { 20 }
}

pub fn main() {
Expand Down

0 comments on commit f3d46bd

Please sign in to comment.