aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-08-03 12:20:29 -0700
committerGraydon Hoare <[email protected]>2010-08-03 12:20:29 -0700
commit1fc4e9fcc623df313dcaaf541f08fc7a8415c67f (patch)
tree6caa66a2e864bdd48be6fb8e199a0c44e146ef4e /src/Makefile
parentUse a better heuristic to determine whether we're on a Mac, issue 69 (diff)
downloadrust-1fc4e9fcc623df313dcaaf541f08fc7a8415c67f.tar.xz
rust-1fc4e9fcc623df313dcaaf541f08fc7a8415c67f.zip
Add tests and fix pexp bug. Closes #141.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index a5e97152..3d31fad3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -381,11 +381,13 @@ TASK_XFAILS := test/run-pass/acyclic-unwind.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/run-pass/yield.rs
TEST_XFAILS_X86 := $(TASK_XFAILS) \
test/run-pass/bind-obj-ctor.rs \
+ test/run-pass/child-outlives-parent.rs \
test/run-pass/clone-with-exterior.rs \
+ test/run-pass/constrained-type.rs \
test/run-pass/obj-as.rs \
test/run-pass/vec-slice.rs \
test/run-pass/fn-lval.rs \
@@ -424,10 +426,12 @@ TEST_XFAILS_LLVM := $(TASK_XFAILS) \
box-in-tup.rs \
box-unbox.rs \
cast.rs \
+ child-outlives-parent.rs \
clone-with-exterior.rs \
comm.rs \
command-line-args.rs \
complex.rs \
+ constrained-type.rs \
deep.rs \
deref.rs \
destructor-ordering.rs \