Remove xfail-boot lines from tests

This commit is contained in:
Brian Anderson 2011-05-14 21:05:22 -04:00
parent 072305af13
commit f33d490032
95 changed files with 0 additions and 97 deletions

View File

@ -1,4 +1,3 @@
// xfail-boot
// based on:
// http://shootout.alioth.debian.org/u32/benchmark.php?test=nbody&lang=java

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: unresolved name: a
mod m1 {

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// error-pattern: unresolved name: a

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern:Unsatisfied precondition
fn foo() -> int {

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern:Unsatisfied precondition
fn foo() -> int {

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: unresolved name
// In this test baz isn't resolved when called as foo.baz even though

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// error-pattern: unresolved import

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: unresolved name
// Tag variants are not exported with their tags. This allows for a

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: unresolved name
mod foo {

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: unresolved name
mod foo {
export x;

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: unresolved name
mod foo {

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// error-pattern: unresolved import: baz
import zed::bar;

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: unresolved modulename
import baz::zed::bar;
mod baz {

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// error-pattern: unresolved modulename
import main::bar;

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: cyclic import
import zed::bar;

View File

@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-boot
// xfail-stage0
// error-pattern: impure function

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-boot
// xfail-stage0
// error-pattern: non-predicate

View File

@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-boot
// xfail-stage0
// error-pattern: expected the constraint name

View File

@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-boot
// xfail-stage0
// error-pattern: non-predicate

View File

@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-boot
// xfail-stage0
// error-pattern: Constraint args must be

View File

@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-boot
// xfail-stage0
// error-pattern: Non-boolean return type

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern:expecting ., found (
fn main() {

View File

@ -1,4 +1,3 @@
// xfail-boot
// error-pattern: Non-call expression in tail call
fn f() -> int {

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
use std;

View File

@ -1,4 +1,3 @@
// xfail-boot
// Unsigned integer operations
fn main() {

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
assert (@1 < @3);
assert (@@"hello " > @@"hello");

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
auto i = 0;

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
let vec[mutable int] v = vec(mutable);
}

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for alt as expressions resulting in boxed types

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
type compare[T] = fn(@T t1, @T t2) -> bool;

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
type compare[T] = fn(&T t1, &T t2) -> bool;

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
type compare[T] = fn(&T t1, &T t2) -> bool;

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for alt as expressions resulting in structural types

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for using alt as an expression

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
fn main() {

View File

@ -1,4 +1,3 @@
// xfail-boot
fn test_fn() {
type t = fn() -> int;

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
type compare[T] = fn(@T t1, @T t2) -> bool;

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
type compare[T] = fn(&T t1, &T t2) -> bool;

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for standalone blocks as expressions with dynamic type sizes

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for standalone blocks as expressions

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for if as expressions returning boxed types

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
type compare[T] = fn(@T t1, @T t2) -> bool;

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
type compare[T] = fn(&T t1, &T t2) -> bool;

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for if as expressions with dynamic type sizes

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for if as expressions returning structural types

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// Tests for if as expressions

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
fn foo(float n) -> float {
ret n + 0.12345;

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
auto pi = 3.1415927;

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
auto a = 1.5e6;
auto b = 1.5E6;

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
auto f = 4.999999999999;
assert (f > 4.90);

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
fn foo((fn(int) -> int) f) {}

View File

@ -1,4 +1,3 @@
// xfail-boot
fn id[T](&T t) -> T {
ret t;

View File

@ -1,4 +1,3 @@
// xfail-boot
fn id[T](&T t) -> T {
ret t;
}

View File

@ -1,4 +1,3 @@
// xfail-boot
fn f[T](@T x) -> @T {
ret x;
}

View File

@ -1,4 +1,3 @@
// xfail-boot
tag option[T] {
some(@T);
none;

View File

@ -1,4 +1,3 @@
// xfail-boot
fn get_third[T](&tup(T,T,T) t) -> T {
ret t._2;

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
tag t {
a;
b(@int);

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,6 +1,5 @@
// -*- rust -*-
// xfail-boot
// xfail-stage0
use std;

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
use std;

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
fn len(vec[mutable? int] v) -> uint {

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,5 +1,3 @@
// xfail-boot
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
obj foo() {

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
obj foo() {

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
obj foo() {

View File

@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-boot
// xfail-stage0
pred f(int q) -> bool { ret true; }

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
assert ("hello" < "hellr");
assert ("hello " > "hello");

View File

@ -1,4 +1,3 @@
// xfail-boot
use std;
import std::_str;

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// -*- rust -*-
// rustboot can't transmit nils across channels because they don't have

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
// xfail-stage0
type a = rec(int a);

View File

@ -1,5 +1,3 @@
// xfail-boot
// xfail-boot
// xfail-stage0
// xfail-stage1
// xfail-stage2

View File

@ -1,4 +1,3 @@
// xfail-boot
fn main() {
let int x = 10;
let int y = 0;