aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorTim Chevalier <[email protected]>2011-03-21 16:43:05 -0700
committerGraydon Hoare <[email protected]>2011-03-22 09:42:31 -0700
commit8556b2c1ad9328ceebb32e934179bcb8a3c0794f (patch)
treed5d225a9c921a73f95d7edf60dec07f844d5690d /src/Makefile
parentAdd some nesting to the else-if test case (diff)
downloadrust-8556b2c1ad9328ceebb32e934179bcb8a3c0794f.tar.xz
rust-8556b2c1ad9328ceebb32e934179bcb8a3c0794f.zip
Added test case for floats
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 229b4e49..bd084e02 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -417,6 +417,10 @@ self: $(CFG_RUSTC)
# Testing
######################################################################
+# Float doesn't work in boot
+
+FLOAT_XFAILS := test/run-pass/float.rs
+
# Temporarily xfail tests broken by the nominal-tags change.
NOMINAL_TAG_XFAILS := test/run-pass/mlist.rs
@@ -442,6 +446,7 @@ TASK_XFAILS := test/run-pass/task-comm-8.rs \
TEST_XFAILS_BOOT := $(TASK_XFAILS) \
$(NOMINAL_TAG_XFAILS) \
$(CONST_TAG_XFAILS) \
+ $(FLOAT_XFAILS) \
test/run-pass/arith-unsigned.rs \
test/run-pass/box-compare.rs \
test/run-pass/child-outlives-parent.rs \