diff options
| author | Tim Chevalier <[email protected]> | 2011-03-22 17:25:40 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-22 17:31:27 -0700 |
| commit | 23e23bd762a4b5a14ff2abcbabfd2349621a3dbe (patch) | |
| tree | a0ff672d10f7a87a22d1eb047632f3b96dfe5317 /src/Makefile | |
| parent | stdlib: Add EBML writing functionality (diff) | |
| download | rust-23e23bd762a4b5a14ff2abcbabfd2349621a3dbe.tar.xz rust-23e23bd762a4b5a14ff2abcbabfd2349621a3dbe.zip | |
Further support for floating-point. Literals with exponents work
and literals with the 'f32' or 'f64' suffixes work as well. In
addition, logging things with the f32 or f64 type works. (float is
still assumed to be a synonym for f64).
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 6e014bd2..66c87e9a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -419,7 +419,8 @@ self: $(CFG_RUSTC) # Float doesn't work in boot -FLOAT_XFAILS := test/run-pass/float.rs +FLOAT_XFAILS := test/run-pass/float.rs \ + test/run-pass/float2.rs # Temporarily xfail tests broken by the nominal-tags change. |