Unignore a few tests

Also, remove one that has an exact duplicate.
This commit is contained in:
Jakub Wieczorek 2014-09-21 01:45:58 +02:00
parent b6e0d3a5bf
commit f3d46bda65
4 changed files with 4 additions and 25 deletions

View File

@ -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() {

View File

@ -1,13 +0,0 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-test #12920
pub fn main() { if 1 == 1 { return; } println!("Paul is dead"); }

View File

@ -10,8 +10,6 @@
#![allow(unreachable_code)]
// ignore-test #12920
fn dont_call_me() { fail!(); println!("{}", 1); }
pub fn main() { }

View File

@ -8,16 +8,14 @@
// 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 {
@ -25,11 +23,11 @@ struct A {
}
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() {