about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2011-01-31 12:47:17 -0800
committerGraydon Hoare <graydon@mozilla.com>2011-01-31 12:47:17 -0800
commit21418230cd9f670740e0db52f76e0b38067c0dbc (patch)
treeff4fbbacca11199bdbcf3ae5d164b824a69a9084
parentf9b37c73480345c5cb4076cbaf67dc36df689919 (diff)
downloadrust-21418230cd9f670740e0db52f76e0b38067c0dbc.tar.gz
rust-21418230cd9f670740e0db52f76e0b38067c0dbc.zip
Re-XFAIL those tests enabled by commit a2789363e107114fdc0ff45a208ae67a56bce73a.
WinNT tinderbox doesn't like them.
-rw-r--r--src/Makefile19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index f7fbaf5b8d6..56a98b984f5 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -375,11 +375,20 @@ CONST_TAG_XFAILS := test/run-pass/generic-tag.rs
 # Temporarily xfail some of the task tests, while debugging the
 # overhauled inter-domain messaging system.
 
-TASK_XFAILS := test/run-pass/alt-type-simple.rs
+TASK_XFAILS := test/run-pass/task-comm-8.rs \
+               test/run-pass/task-comm-10.rs \
+               test/run-pass/task-comm-15.rs \
+               test/run-pass/task-comm-12.rs \
+               test/run-pass/task-comm-2.rs \
+               test/run-pass/task-comm-9.rs \
+               test/run-pass/task-life-0.rs \
+               test/run-pass/alt-type-simple.rs \
+               test/run-pass/many.rs
 
 TEST_XFAILS_BOOT :=  $(TASK_XFAILS) \
                     $(NOMINAL_TAG_XFAILS) \
                     $(CONST_TAG_XFAILS) \
+                    test/run-pass/child-outlives-parent.rs \
                     test/run-pass/clone-with-exterior.rs \
                     test/run-pass/constrained-type.rs \
                     test/run-pass/destructor-ordering.rs \
@@ -389,8 +398,12 @@ TEST_XFAILS_BOOT :=  $(TASK_XFAILS) \
                     test/run-pass/generic-recursive-tag.rs \
                     test/run-pass/generic-tup.rs \
                     test/run-pass/iter-ret.rs \
+                    test/run-pass/lib-io.rs \
                     test/run-pass/mlist-cycle.rs \
+                    test/run-pass/obj-as.rs \
                     test/run-pass/task-comm.rs \
+                    test/run-pass/task-comm-3.rs \
+                    test/run-pass/vec-slice.rs \
                     test/run-pass/while-and-do-while.rs \
                     test/run-fail/task-comm-14.rs \
                     test/compile-fail/bad-expr-path.rs \
@@ -399,7 +412,9 @@ TEST_XFAILS_BOOT :=  $(TASK_XFAILS) \
                     test/compile-fail/import3.rs \
                     test/compile-fail/import4.rs \
                     test/compile-fail/bad-recv.rs \
-                    test/compile-fail/bad-send.rs
+                    test/compile-fail/bad-send.rs \
+                    test/compile-fail/infinite-vec-type-recursion.rs \
+                    test/compile-fail/writing-through-read-alias.rs
 
 # Same strategy here for the time being: just list the ones that
 # work and assume the others don't. Invert this when we're closer