about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2013-01-07 18:05:18 -0800
committerTim Chevalier <chevalier@alum.wellesley.edu>2013-01-07 18:05:18 -0800
commitfb9458e1ec6278e3b43a88b3404b2682d4b9bb01 (patch)
tree300f856d37108d5413828ba488f6bc047396219f /src
parent86db69def2ce8e3c0b9abc178ebf05b9d219ed77 (diff)
downloadrust-fb9458e1ec6278e3b43a88b3404b2682d4b9bb01.tar.gz
rust-fb9458e1ec6278e3b43a88b3404b2682d4b9bb01.zip
xfail broken tests
Diffstat (limited to 'src')
-rw-r--r--src/test/compile-fail/fully-qualified-type-name3.rs1
-rw-r--r--src/test/compile-fail/pptypedef.rs1
-rw-r--r--src/test/compile-fail/unsafe-fn-autoderef.rs2
3 files changed, 3 insertions, 1 deletions
diff --git a/src/test/compile-fail/fully-qualified-type-name3.rs b/src/test/compile-fail/fully-qualified-type-name3.rs
index b7d70c60c22..464f292b758 100644
--- a/src/test/compile-fail/fully-qualified-type-name3.rs
+++ b/src/test/compile-fail/fully-qualified-type-name3.rs
@@ -10,6 +10,7 @@
 
 // Test that we use fully-qualified type names in error messages.
 
+// xfail-test
 type T1 = uint;
 type T2 = int;
 
diff --git a/src/test/compile-fail/pptypedef.rs b/src/test/compile-fail/pptypedef.rs
index 9ed520a6c99..223d7effa4c 100644
--- a/src/test/compile-fail/pptypedef.rs
+++ b/src/test/compile-fail/pptypedef.rs
@@ -8,6 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// xfail-test
 type foo = Option<int>;
 
 fn bar(_t: foo) {}
diff --git a/src/test/compile-fail/unsafe-fn-autoderef.rs b/src/test/compile-fail/unsafe-fn-autoderef.rs
index 4932e526574..b602d1717be 100644
--- a/src/test/compile-fail/unsafe-fn-autoderef.rs
+++ b/src/test/compile-fail/unsafe-fn-autoderef.rs
@@ -9,7 +9,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-
+// xfail-test
 type rec = {f: int};
 fn f(p: *rec) -> int {