Skip to content

Commit

Permalink
Remove xfail-pretty from tests that pretty-print correctly now
Browse files Browse the repository at this point in the history
  • Loading branch information
catamorphism committed Oct 30, 2012
1 parent 62f98c8 commit 165ce14
Show file tree
Hide file tree
Showing 26 changed files with 0 additions and 32 deletions.
1 change: 0 additions & 1 deletion src/test/bench/core-std.rs
@@ -1,4 +1,3 @@
// xfail-pretty
// Microbenchmarks for various functions in core and std

extern mod std;
Expand Down
2 changes: 0 additions & 2 deletions src/test/bench/msgsend-pipes-shared.rs
Expand Up @@ -8,8 +8,6 @@
// different scalability characteristics compared to the select
// version.

// xfail-pretty

#[legacy_modes];

extern mod std;
Expand Down
2 changes: 0 additions & 2 deletions src/test/bench/msgsend-pipes.rs
Expand Up @@ -4,8 +4,6 @@
//
// I *think* it's the same, more or less.

// xfail-pretty

#[legacy_modes];

extern mod std;
Expand Down
2 changes: 0 additions & 2 deletions src/test/bench/msgsend-ring-mutex-arcs.rs
Expand Up @@ -5,8 +5,6 @@

// This also serves as a pipes test, because ARCs are implemented with pipes.

// xfail-pretty

extern mod std;
use std::time;
use std::arc;
Expand Down
2 changes: 0 additions & 2 deletions src/test/bench/msgsend-ring-pipes.rs
Expand Up @@ -6,8 +6,6 @@

// This version uses automatically compiled channel contracts.

// xfail-pretty

extern mod std;
use std::time;
use std::future;
Expand Down
2 changes: 0 additions & 2 deletions src/test/bench/msgsend-ring-rw-arcs.rs
Expand Up @@ -5,8 +5,6 @@

// This also serves as a pipes test, because ARCs are implemented with pipes.

// xfail-pretty

extern mod std;
use std::time;
use std::arc;
Expand Down
2 changes: 0 additions & 2 deletions src/test/bench/pingpong.rs
@@ -1,7 +1,5 @@
// Compare bounded and unbounded protocol performance.

// xfail-pretty

extern mod std;

use pipes::{spawn_service, recv};
Expand Down
1 change: 0 additions & 1 deletion src/test/bench/shootout-pfib.rs
@@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-pretty

/*
A parallel version of fibonacci numbers.
Expand Down
1 change: 0 additions & 1 deletion src/test/compile-fail/qquote-1.rs
@@ -1,4 +1,3 @@
// xfail-pretty

extern mod std;
extern mod syntax;
Expand Down
1 change: 0 additions & 1 deletion src/test/compile-fail/qquote-2.rs
@@ -1,4 +1,3 @@
// xfail-pretty

extern mod std;
use syntax;
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/fat-arrow-alt.rs
@@ -1,5 +1,4 @@
// -*- rust -*-
// xfail-pretty

enum color {
red,
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/html-literals.rs
@@ -1,6 +1,5 @@
// A test of the macro system. Can we do HTML literals?

// xfail-pretty

/*
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/issue-2718.rs
@@ -1,5 +1,4 @@
// tjc: I don't know why
// xfail-pretty
mod pipes {
#[legacy_exports];
use cast::{forget, transmute};
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/pipe-bank-proto.rs
@@ -1,4 +1,3 @@
// xfail-pretty

// An example of the bank protocol from eholk's blog post.
//
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/pipe-detect-term.rs
@@ -1,6 +1,5 @@
// Make sure that we can detect when one end of the pipe is closed.

// xfail-pretty
// xfail-win32

extern mod std;
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/pipe-peek.rs
@@ -1,4 +1,3 @@
// xfail-pretty

extern mod std;
use std::timer::sleep;
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/pipe-pingpong-bounded.rs
Expand Up @@ -2,7 +2,6 @@
// experiment with what code the compiler should generate for bounded
// protocols.

// xfail-pretty

// This was generated initially by the pipe compiler, but it's been
// modified in hopefully straightforward ways.
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/pipe-pingpong-proto.rs
@@ -1,6 +1,5 @@
// An example to make sure the protocol parsing syntax extension works.

// xfail-pretty

proto! pingpong (
ping:send {
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/pipe-presentation-examples.rs
Expand Up @@ -3,7 +3,6 @@
// Code is easier to write in emacs, and it's good to be sure all the
// code samples compile (or not) as they should.

// xfail-pretty

use double_buffer::client::*;
use double_buffer::give_buffer;
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/pipe-sleep.rs
@@ -1,4 +1,3 @@
// xfail-pretty

extern mod std;
use std::timer::sleep;
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/rec-align-u32.rs
@@ -1,4 +1,3 @@
// xfail-pretty
// Issue #2303

#[abi = "rust-intrinsic"]
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/rec-align-u64.rs
@@ -1,4 +1,3 @@
// xfail-pretty
// Issue #2303

#[abi = "rust-intrinsic"]
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/reexport-star.rs
@@ -1,4 +1,3 @@
// xfail-pretty
// FIXME #3654

mod a {
Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/test-ignore-cfg.rs
@@ -1,6 +1,5 @@
// compile-flags: --test --cfg ignorecfg
// xfail-fast
// xfail-pretty

extern mod std;

Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/unreachable-code-1.rs
@@ -1,4 +1,3 @@
// xfail-pretty

fn id(x: bool) -> bool { x }

Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/unreachable-code.rs
@@ -1,4 +1,3 @@
// xfail-pretty

fn id(x: bool) -> bool { x }

Expand Down

0 comments on commit 165ce14

Please sign in to comment.