about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2011-01-21 15:56:42 -0800
committerGraydon Hoare <graydon@mozilla.com>2011-01-21 15:56:42 -0800
commitb361b1ee8c29ae15fa8672aec06ee7d7e208a1b4 (patch)
tree9787cfdab08de1fa05fca425ca93b86cb7e05170
parent90e329da6b263cde1fc286e2c4aa6d062a6acf8a (diff)
downloadrust-b361b1ee8c29ae15fa8672aec06ee7d7e208a1b4.tar.gz
rust-b361b1ee8c29ae15fa8672aec06ee7d7e208a1b4.zip
Un-XFAIL 7 tests that have begun working on rustc lately. Fix one bug in mlist.rs.
-rw-r--r--src/Makefile7
-rw-r--r--src/test/run-pass/mlist.rs4
2 files changed, 9 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 385558b6062..4d43430c1a9 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -440,6 +440,9 @@ TEST_XFAILS_RUSTC := $(filter-out \
                         drop-bind-thunk-args.rs \
                         drop-on-ret.rs \
                         fact.rs \
+                        fn-lval.rs \
+                        fun-call-variants.rs \
+                        fun-indirect-call.rs \
                         generic-fn-infer.rs \
                         generic-drop-glue.rs \
                         generic-tup.rs \
@@ -453,17 +456,21 @@ TEST_XFAILS_RUSTC := $(filter-out \
                         import5.rs \
                         import6.rs \
                         import7.rs \
+                        integral-indexing.rs \
                         item-name-overload.rs \
                         large-records.rs \
                         lazy-init.rs \
                         lazy-and-or.rs \
                         linear-for-loop.rs \
                         multiline-comment.rs \
+                        mutual-recursion-group.rs \
                         obj-drop.rs \
                         obj-recursion.rs \
                         obj-with-vec.rs \
                         operator-associativity.rs \
+                        opeq.rs \
                         output-slot-variants.rs \
+                        over-constrained-vregs.rs \
                         readalias.rs \
                         rec.rs \
                         rec-auto.rs \
diff --git a/src/test/run-pass/mlist.rs b/src/test/run-pass/mlist.rs
index 35b1c2db444..3754d044c4a 100644
--- a/src/test/run-pass/mlist.rs
+++ b/src/test/run-pass/mlist.rs
@@ -2,9 +2,9 @@
 
 tag mlist {
   cons(int,mutable @mlist);
-  nil();
+  nil;
 }
 
 fn main() {
-  cons(10, @cons(11, @cons(12, @nil())));
+  cons(10, @cons(11, @cons(12, @nil)));
 }