]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/exponential-notation.rs
rollup merge of #20608: nikomatsakis/assoc-types-method-dispatch
[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 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(($a:expr, $b:expr) => { { let (r, _) = $a; assert_eq!(r, $b.to_string()); } });
19
20 pub fn main() {
21     // Basic usage
22     t!(to_string(1.2345678e-5f64, 10u, true, SignNeg, DigMax(6), ExpDec, false),
23              "1.234568e-5");
24
25     // Hexadecimal output
26     t!(to_string(7.281738281250e+01f64, 16u, true, SignAll, DigMax(6), ExpBin, false),
27               "+1.2345p+6");
28     t!(to_string(-1.777768135071e-02f64, 16u, true, SignAll, DigMax(6), ExpBin, false),
29              "-1.2345p-6");
30
31     // Some denormals
32     t!(to_string(4.9406564584124654e-324f64, 10u, true, SignNeg, DigMax(6), ExpBin, false),
33              "1p-1074");
34     t!(to_string(2.2250738585072009e-308f64, 10u, true, SignNeg, DigMax(6), ExpBin, false),
35              "1p-1022");
36 }