diff options
| author | Michael Bebenita <[email protected]> | 2010-08-16 23:28:01 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-08-16 23:28:01 -0700 |
| commit | 560d7b4983f60aad4a9c49dcd62f1b5d9b1d0b78 (patch) | |
| tree | 554e4422b8ea80fe00aded078fc8f93d881da9aa /src | |
| parent | Putting out the burning tree on Windows. Turns out you can completely starve ... (diff) | |
| download | rust-560d7b4983f60aad4a9c49dcd62f1b5d9b1d0b78.tar.xz rust-560d7b4983f60aad4a9c49dcd62f1b5d9b1d0b78.zip | |
Re-xfailed tests because Windows is still complaining.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 033fb919..1ba681fd 100644 --- a/src/Makefile +++ b/src/Makefile @@ -367,13 +367,30 @@ self: $(CFG_COMPILER) # Temporarily xfail the entire multi-tasking system, pending resolution # of inter-task shutdown races introduced with notification proxies. -TASK_XFAILS := test/run-pass/clone-with-exterior.rs \ +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-10.rs \ + test/run-pass/task-comm-11.rs \ test/run-pass/task-life-0.rs \ - test/run-pass/task-comm.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 \ |