Skip to content

Commit c13e0de

Browse files
committed
Add some tests for the exponential notation
1 parent 25b107f commit c13e0de

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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_owned()) } })
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+
}

src/test/run-pass/ifmt.rs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -219,6 +219,14 @@ pub fn main() {
219219
t!(format!("{:+10.3f}", 1.0f64), " +1.000");
220220
t!(format!("{:+10.3f}", -1.0f64), " -1.000");
221221

222+
t!(format!("{:e}", 1.2345e6f32), "1.2345e6");
223+
t!(format!("{:e}", 1.2345e6f64), "1.2345e6");
224+
t!(format!("{:E}", 1.2345e6f64), "1.2345E6");
225+
t!(format!("{:.3e}", 1.2345e6f64), "1.234e6");
226+
t!(format!("{:10.3e}", 1.2345e6f64), " 1.234e6");
227+
t!(format!("{:+10.3e}", 1.2345e6f64), " +1.234e6");
228+
t!(format!("{:+10.3e}", -1.2345e6f64), " -1.234e6");
229+
222230
// Escaping
223231
t!(format!("\\{"), "{");
224232
t!(format!("\\}"), "}");

0 commit comments

Comments
 (0)