diff options
| author | Graydon Hoare <[email protected]> | 2010-07-15 18:57:21 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-15 18:57:21 -0700 |
| commit | f300ca4ed7dd967b43c965417a8091dbc444cb82 (patch) | |
| tree | 9f76b2c5864117abf20cefa4d5a9ec27d3088fd2 /src/Makefile | |
| parent | Implement the "simple typechecker", which avoids HM inference (diff) | |
| download | rust-f300ca4ed7dd967b43c965417a8091dbc444cb82.tar.xz rust-f300ca4ed7dd967b43c965417a8091dbc444cb82.zip | |
XFAIL the new destructor tests; collided with new typechecker; add test for issue #109.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 357672a0..5db5683a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -347,6 +347,7 @@ MUT_BOX_XFAILS := $(addprefix test/run-pass/, \ TEST_XFAILS_X86 := $(MUT_BOX_XFAILS) \ test/run-pass/mlist-cycle.rs \ test/run-pass/clone-with-exterior.rs \ + test/run-pass/destructor-ordering.rs \ test/run-pass/obj-as.rs \ test/run-pass/rec-auto.rs \ test/run-pass/vec-slice.rs \ @@ -356,6 +357,7 @@ TEST_XFAILS_X86 := $(MUT_BOX_XFAILS) \ test/run-pass/generic-recursive-tag.rs \ test/run-pass/mutable-vec-drop.rs \ test/run-pass/bind-obj-ctor.rs \ + test/run-pass/vec-alloc-append.rs \ test/run-pass/task-comm.rs \ test/compile-fail/rec-missing-fields.rs \ test/compile-fail/bad-send.rs \ @@ -466,6 +468,7 @@ TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \ use-import-export.rs \ use-uninit.rs \ utf8.rs \ + vec-alloc-append.rs \ vec-append.rs \ vec-concat.rs \ vec-drop.rs \ |