about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-12-07 23:42:26 -0800
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-12-07 23:42:58 -0800
commit2c2398ca0d877390b9716cfa135b59418b9f6b5d (patch)
tree8a997b957fe875f22e6cc6eb2da10b70c23f978d
parent833eb7ae1da68ad3ad0cb51b3b28f207c435b931 (diff)
downloadrust-2c2398ca0d877390b9716cfa135b59418b9f6b5d.tar.gz
rust-2c2398ca0d877390b9716cfa135b59418b9f6b5d.zip
Xfail broken tests
-rw-r--r--doc/rust.md4
-rw-r--r--src/test/bench/shootout-nbody.rs1
-rw-r--r--src/test/run-pass/stat.rs1
3 files changed, 4 insertions, 2 deletions
diff --git a/doc/rust.md b/doc/rust.md
index 8c39fab28e7..096b873e589 100644
--- a/doc/rust.md
+++ b/doc/rust.md
@@ -2704,7 +2704,7 @@ The special type `self` has a meaning within methods inside an
 impl item. It refers to the type of the implicit `self` argument. For
 example, in:
 
-~~~~~~
+~~~~~~~~{.xfail-test}
 trait Printable {
   fn to_str() -> ~str;
 }
@@ -2712,7 +2712,7 @@ trait Printable {
 impl ~str: Printable {
   fn to_str() -> ~str { copy self }
 }
-~~~~~~
+~~~~~~~~
 
 `self` refers to the value of type `~str` that is the receiver for a
 call to the method `to_str`.
diff --git a/src/test/bench/shootout-nbody.rs b/src/test/bench/shootout-nbody.rs
index bd535b12895..4fb621b7f0d 100644
--- a/src/test/bench/shootout-nbody.rs
+++ b/src/test/bench/shootout-nbody.rs
@@ -1,3 +1,4 @@
+// xfail-test
 // based on:
 // http://shootout.alioth.debian.org/u32/benchmark.php?test=nbody&lang=java
 
diff --git a/src/test/run-pass/stat.rs b/src/test/run-pass/stat.rs
index 9767370fe7f..9e3edb0c74d 100644
--- a/src/test/run-pass/stat.rs
+++ b/src/test/run-pass/stat.rs
@@ -1,3 +1,4 @@
+// xfail-test
 extern mod std;
 use io::WriterUtil;
 use std::tempfile;