]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/exponential-notation.rs
7d79815f7780db42c353fcfd7a0d2b94ef6a1725
[rust.git] / src / test / run-pass / exponential-notation.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(macro_rules)]
12
13 use s = std::num::strconv;
14 use to_str = std::num::strconv::float_to_str_common;
15
16 macro_rules! t(($a:expr, $b:expr) => { { let (r, _) = $a; assert_eq!(r, $b.to_string()) } })
17
18 pub fn main() {
19     // Basic usage
20     t!(to_str(1.2345678e-5, 10u, true, s::SignNeg, s::DigMax(6), s::ExpDec, false),
21              "1.234568e-5")
22
23     // Hexadecimal output
24     t!(to_str(7.281738281250e+01, 16u, true, s::SignAll, s::DigMax(6), s::ExpBin, false),
25               "+1.2345p+6")
26     t!(to_str(-1.777768135071e-02, 16u, true, s::SignAll, s::DigMax(6), s::ExpBin, false),
27              "-1.2345p-6")
28
29     // Some denormals
30     t!(to_str(4.9406564584124654e-324, 10u, true, s::SignNeg, s::DigMax(6), s::ExpBin, false),
31              "1p-1074")
32     t!(to_str(2.2250738585072009e-308, 10u, true, s::SignNeg, s::DigMax(6), s::ExpBin, false),
33              "1p-1022")
34 }