diff options
| author | Graydon Hoare <[email protected]> | 2011-03-22 16:58:00 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-22 17:11:47 -0700 |
| commit | d96b8cd649118381ba74dfb5d87a60a675ec2da7 (patch) | |
| tree | 771b2b3ff6d0344a84fef7462ee3659c7c228cc9 | |
| parent | Trim redundant / (diff) | |
| download | rust-d96b8cd649118381ba74dfb5d87a60a675ec2da7.tar.xz rust-d96b8cd649118381ba74dfb5d87a60a675ec2da7.zip | |
XFAIL float.rs in boot under new Makefile.in
| -rw-r--r-- | Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index d69e8d06..bcedd53d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -484,6 +484,10 @@ rustllvm/%.o: rustllvm/%.cpp $(MKFILES) # Testing variables ###################################################################### +# 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 := $(S)src/test/run-pass/mlist.rs @@ -510,6 +514,7 @@ TASK_XFAILS := $(addprefix $(S)src/test/run-pass/, \ TEST_XFAILS_BOOT := $(TASK_XFAILS) \ $(NOMINAL_TAG_XFAILS) \ $(CONST_TAG_XFAILS) \ + $(FLOAT_XFAILS) \ $(addprefix $(S)src/test/run-pass/, \ arith-unsigned.rs \ box-compare.rs \ |