Merge branch 'master' of git@github.com:graydon/rust

This commit is contained in:
Graydon Hoare 2010-07-29 16:04:38 -07:00
commit 1ffcb7d21d

View File

@ -358,7 +358,33 @@ self: $(CFG_COMPILER)
# Testing
######################################################################
TEST_XFAILS_X86 := test/run-pass/bind-obj-ctor.rs \
# Temporarily xfail the entire multi-tasking system, pending resolution
# of inter-task shutdown races introduced with notification proxies.
TASK_XFAILS := test/run-pass/acyclic-unwind.rs \
test/run-pass/basic.rs \
test/run-pass/clone-with-exterior.rs \
test/run-pass/comm.rs \
test/run-pass/lazychan.rs \
test/run-pass/many.rs \
test/run-pass/obj-dtor.rs \
test/run-pass/preempt.rs \
test/run-pass/spawn-fn.rs \
test/run-pass/spawn-module-qualified.rs \
test/run-pass/spawn.rs \
test/run-pass/task-comm-0.rs \
test/run-pass/task-comm-1.rs \
test/run-pass/task-comm-2.rs \
test/run-pass/task-comm-3.rs \
test/run-pass/task-comm-7.rs \
test/run-pass/task-comm-8.rs \
test/run-pass/task-comm-9.rs \
test/run-pass/task-comm.rs \
test/run-pass/threads.rs \
test/run-pass/yield.rs
TEST_XFAILS_X86 := $(TASK_XFAILS) \
test/run-pass/bind-obj-ctor.rs \
test/run-pass/clone-with-exterior.rs \
test/run-pass/obj-as.rs \
test/run-pass/vec-slice.rs \
@ -381,7 +407,8 @@ TEST_XFAILS_X86 := test/run-pass/bind-obj-ctor.rs \
test/compile-fail/infinite-vec-type-recursion.rs \
test/compile-fail/writing-through-read-alias.rs
TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \
TEST_XFAILS_LLVM := $(TASK_XFAILS) \
$(addprefix test/run-pass/, \
acyclic-unwind.rs \
alt-pattern-simple.rs \
alt-tag.rs \