]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/exponential-notation.rs
3f451ee8d515953bb8877d1d7d9d6a25c190d559
[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(std_misc)]
12
13 use std::num::strconv::ExponentFormat::{ExpBin, ExpDec};
14 use std::num::strconv::SignificantDigits::DigMax;
15 use std::num::strconv::SignFormat::{SignAll, SignNeg};
16 use std::num::strconv::float_to_str_common as to_string;
17
18 macro_rules! t {
19     ($a:expr, $b:expr) => { { let (r, _) = $a; assert_eq!(r, $b.to_string()); } }
20 }
21
22 pub fn main() {
23     // Basic usage
24     t!(to_string(1.2345678e-5f64, 10, true, SignNeg, DigMax(6), ExpDec, false),
25              "1.234568e-5");
26
27     // Hexadecimal output
28     t!(to_string(7.281738281250e+01f64, 16, true, SignAll, DigMax(6), ExpBin, false),
29               "+1.2345p+6");
30     t!(to_string(-1.777768135071e-02f64, 16, true, SignAll, DigMax(6), ExpBin, false),
31              "-1.2345p-6");
32
33     // Some denormals
34     t!(to_string(4.9406564584124654e-324f64, 10, true, SignNeg, DigMax(6), ExpBin, false),
35              "1p-1074");
36     t!(to_string(2.2250738585072009e-308f64, 10, true, SignNeg, DigMax(6), ExpBin, false),
37              "1p-1022");
38 }