Skip to content

Commit 165ce14

Browse files
committed
Remove xfail-pretty from tests that pretty-print correctly now
1 parent 62f98c8 commit 165ce14

26 files changed

+0
-32
lines changed

src/test/bench/core-std.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21
// Microbenchmarks for various functions in core and std
32

43
extern mod std;

src/test/bench/msgsend-pipes-shared.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// different scalability characteristics compared to the select
99
// version.
1010

11-
// xfail-pretty
12-
1311
#[legacy_modes];
1412

1513
extern mod std;

src/test/bench/msgsend-pipes.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
//
55
// I *think* it's the same, more or less.
66

7-
// xfail-pretty
8-
97
#[legacy_modes];
108

119
extern mod std;

src/test/bench/msgsend-ring-mutex-arcs.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55

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

8-
// xfail-pretty
9-
108
extern mod std;
119
use std::time;
1210
use std::arc;

src/test/bench/msgsend-ring-pipes.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
// This version uses automatically compiled channel contracts.
88

9-
// xfail-pretty
10-
119
extern mod std;
1210
use std::time;
1311
use std::future;

src/test/bench/msgsend-ring-rw-arcs.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55

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

8-
// xfail-pretty
9-
108
extern mod std;
119
use std::time;
1210
use std::arc;

src/test/bench/pingpong.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// Compare bounded and unbounded protocol performance.
22

3-
// xfail-pretty
4-
53
extern mod std;
64

75
use pipes::{spawn_service, recv};

src/test/bench/shootout-pfib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// -*- rust -*-
2-
// xfail-pretty
32

43
/*
54
A parallel version of fibonacci numbers.

src/test/compile-fail/qquote-1.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21

32
extern mod std;
43
extern mod syntax;

src/test/compile-fail/qquote-2.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21

32
extern mod std;
43
use syntax;

src/test/run-pass/fat-arrow-alt.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// -*- rust -*-
2-
// xfail-pretty
32

43
enum color {
54
red,

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// A test of the macro system. Can we do HTML literals?
22

3-
// xfail-pretty
43

54
/*
65

src/test/run-pass/issue-2718.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// tjc: I don't know why
2-
// xfail-pretty
32
mod pipes {
43
#[legacy_exports];
54
use cast::{forget, transmute};

src/test/run-pass/pipe-bank-proto.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21

32
// An example of the bank protocol from eholk's blog post.
43
//

src/test/run-pass/pipe-detect-term.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// Make sure that we can detect when one end of the pipe is closed.
22

3-
// xfail-pretty
43
// xfail-win32
54

65
extern mod std;

src/test/run-pass/pipe-peek.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21

32
extern mod std;
43
use std::timer::sleep;

src/test/run-pass/pipe-pingpong-bounded.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// experiment with what code the compiler should generate for bounded
33
// protocols.
44

5-
// xfail-pretty
65

76
// This was generated initially by the pipe compiler, but it's been
87
// modified in hopefully straightforward ways.

src/test/run-pass/pipe-pingpong-proto.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// An example to make sure the protocol parsing syntax extension works.
22

3-
// xfail-pretty
43

54
proto! pingpong (
65
ping:send {

src/test/run-pass/pipe-presentation-examples.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// Code is easier to write in emacs, and it's good to be sure all the
44
// code samples compile (or not) as they should.
55

6-
// xfail-pretty
76

87
use double_buffer::client::*;
98
use double_buffer::give_buffer;

src/test/run-pass/pipe-sleep.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21

32
extern mod std;
43
use std::timer::sleep;

src/test/run-pass/rec-align-u32.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21
// Issue #2303
32

43
#[abi = "rust-intrinsic"]

src/test/run-pass/rec-align-u64.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21
// Issue #2303
32

43
#[abi = "rust-intrinsic"]

src/test/run-pass/reexport-star.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21
// FIXME #3654
32

43
mod a {

src/test/run-pass/test-ignore-cfg.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// compile-flags: --test --cfg ignorecfg
22
// xfail-fast
3-
// xfail-pretty
43

54
extern mod std;
65

src/test/run-pass/unreachable-code-1.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21

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

src/test/run-pass/unreachable-code.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// xfail-pretty
21

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

0 commit comments

Comments
 (0)