Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 13b800d

Browse files
author
Alfie John
committedJan 20, 2015
Replace deprecated integer suffixes
1 parent 3bf41da commit 13b800d

20 files changed

+53
-53
lines changed
 

‎src/libcollections/bit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2622,7 +2622,7 @@ mod bitv_set_test {
26222622
s.insert(10);
26232623
s.insert(50);
26242624
s.insert(2);
2625-
assert_eq!("BitvSet {1u, 2u, 10u, 50u}", format!("{:?}", s));
2625+
assert_eq!("BitvSet {1us, 2us, 10us, 50us}", format!("{:?}", s));
26262626
}
26272627

26282628
#[test]

‎src/libcollections/btree/set.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ mod test {
892892

893893
let set_str = format!("{:?}", set);
894894

895-
assert_eq!(set_str, "BTreeSet {1i, 2i}");
895+
assert_eq!(set_str, "BTreeSet {1is, 2is}");
896896
assert_eq!(format!("{:?}", empty), "BTreeSet {}");
897897
}
898898
}

‎src/libcollections/dlist.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1333,7 +1333,8 @@ mod tests {
13331333
#[test]
13341334
fn test_show() {
13351335
let list: DList<int> = range(0i, 10).collect();
1336-
assert_eq!(format!("{:?}", list), "DList [0i, 1i, 2i, 3i, 4i, 5i, 6i, 7i, 8i, 9i]");
1336+
assert_eq!(format!("{:?}", list),
1337+
"DList [0is, 1is, 2is, 3is, 4is, 5is, 6is, 7is, 8is, 9is]");
13371338

13381339
let list: DList<&str> = vec!["just", "one", "test", "more"].iter()
13391340
.map(|&s| s)

‎src/libcollections/ring_buf.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2302,7 +2302,8 @@ mod tests {
23022302
#[test]
23032303
fn test_show() {
23042304
let ringbuf: RingBuf<int> = range(0i, 10).collect();
2305-
assert_eq!(format!("{:?}", ringbuf), "RingBuf [0i, 1i, 2i, 3i, 4i, 5i, 6i, 7i, 8i, 9i]");
2305+
assert_eq!(format!("{:?}", ringbuf),
2306+
"RingBuf [0is, 1is, 2is, 3is, 4is, 5is, 6is, 7is, 8is, 9is]");
23062307

23072308
let ringbuf: RingBuf<&str> = vec!["just", "one", "test", "more"].iter()
23082309
.map(|&s| s)

‎src/libcollections/slice.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -2476,19 +2476,19 @@ mod tests {
24762476
}
24772477
let empty: Vec<int> = vec![];
24782478
test_show_vec!(empty, "[]");
2479-
test_show_vec!(vec![1i], "[1i]");
2480-
test_show_vec!(vec![1i, 2, 3], "[1i, 2i, 3i]");
2481-
test_show_vec!(vec![vec![], vec![1u], vec![1u, 1u]],
2482-
"[[], [1u], [1u, 1u]]");
2479+
test_show_vec!(vec![1is], "[1is]");
2480+
test_show_vec!(vec![1is, 2, 3], "[1is, 2is, 3is]");
2481+
test_show_vec!(vec![vec![], vec![1u], vec![1us, 1us]],
2482+
"[[], [1us], [1us, 1us]]");
24832483

24842484
let empty_mut: &mut [int] = &mut[];
24852485
test_show_vec!(empty_mut, "[]");
24862486
let v: &mut[int] = &mut[1];
2487-
test_show_vec!(v, "[1i]");
2487+
test_show_vec!(v, "[1is]");
24882488
let v: &mut[int] = &mut[1, 2, 3];
2489-
test_show_vec!(v, "[1i, 2i, 3i]");
2490-
let v: &mut [&mut[uint]] = &mut[&mut[], &mut[1u], &mut[1u, 1u]];
2491-
test_show_vec!(v, "[[], [1u], [1u, 1u]]");
2489+
test_show_vec!(v, "[1is, 2is, 3is]");
2490+
let v: &mut [&mut[uint]] = &mut[&mut[], &mut[1us], &mut[1us, 1us]];
2491+
test_show_vec!(v, "[[], [1us], [1us, 1us]]");
24922492
}
24932493

24942494
#[test]

‎src/libcollections/string.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1295,10 +1295,10 @@ mod tests {
12951295
fn test_vectors() {
12961296
let x: Vec<int> = vec![];
12971297
assert_eq!(format!("{:?}", x), "[]");
1298-
assert_eq!(format!("{:?}", vec![1i]), "[1i]");
1299-
assert_eq!(format!("{:?}", vec![1i, 2, 3]), "[1i, 2i, 3i]");
1300-
assert!(format!("{:?}", vec![vec![], vec![1i], vec![1i, 1]]) ==
1301-
"[[], [1i], [1i, 1i]]");
1298+
assert_eq!(format!("{:?}", vec![1is]), "[1is]");
1299+
assert_eq!(format!("{:?}", vec![1is, 2, 3]), "[1is, 2is, 3is]");
1300+
assert!(format!("{:?}", vec![vec![], vec![1is], vec![1is, 1]]) ==
1301+
"[[], [1is], [1is, 1is]]");
13021302
}
13031303

13041304
#[test]

‎src/libcollections/vec_map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ mod test_map {
930930
map.insert(3, 4i);
931931

932932
let map_str = format!("{:?}", map);
933-
assert!(map_str == "VecMap {1: 2i, 3: 4i}" || map_str == "{3: 4i, 1: 2i}");
933+
assert!(map_str == "VecMap {1: 2is, 3: 4is}" || map_str == "{3: 4is, 1: 2is}");
934934
assert_eq!(format!("{:?}", empty), "VecMap {}");
935935
}
936936

‎src/libcore/fmt/num.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ macro_rules! integer {
209209
show! { $Uint with $SU }
210210
}
211211
}
212-
integer! { int, uint, "i", "u" }
212+
integer! { int, uint, "is", "us" }
213213
integer! { i8, u8 }
214214
integer! { i16, u16 }
215215
integer! { i32, u32 }

‎src/libcoretest/fmt/num.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn test_format_int() {
2626
assert!(format!("{}", -1i16) == "-1");
2727
assert!(format!("{}", -1i32) == "-1");
2828
assert!(format!("{}", -1i64) == "-1");
29-
assert!(format!("{:?}", 1i) == "1i");
29+
assert!(format!("{:?}", 1is) == "1is");
3030
assert!(format!("{:?}", 1i8) == "1i8");
3131
assert!(format!("{:?}", 1i16) == "1i16");
3232
assert!(format!("{:?}", 1i32) == "1i32");
@@ -57,7 +57,7 @@ fn test_format_int() {
5757
assert!(format!("{}", 1u16) == "1");
5858
assert!(format!("{}", 1u32) == "1");
5959
assert!(format!("{}", 1u64) == "1");
60-
assert!(format!("{:?}", 1u) == "1u");
60+
assert!(format!("{:?}", 1us) == "1us");
6161
assert!(format!("{:?}", 1u8) == "1u8");
6262
assert!(format!("{:?}", 1u16) == "1u16");
6363
assert!(format!("{:?}", 1u32) == "1u32");
@@ -94,14 +94,14 @@ fn test_format_int() {
9494
#[test]
9595
fn test_format_int_zero() {
9696
assert!(format!("{}", 0i) == "0");
97-
assert!(format!("{:?}", 0i) == "0i");
97+
assert!(format!("{:?}", 0is) == "0is");
9898
assert!(format!("{:b}", 0i) == "0");
9999
assert!(format!("{:o}", 0i) == "0");
100100
assert!(format!("{:x}", 0i) == "0");
101101
assert!(format!("{:X}", 0i) == "0");
102102

103103
assert!(format!("{}", 0u) == "0");
104-
assert!(format!("{:?}", 0u) == "0u");
104+
assert!(format!("{:?}", 0us) == "0us");
105105
assert!(format!("{:b}", 0u) == "0");
106106
assert!(format!("{:o}", 0u) == "0");
107107
assert!(format!("{:x}", 0u) == "0");

‎src/libstd/collections/hash/map.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1996,8 +1996,8 @@ mod test_map {
19961996

19971997
let map_str = format!("{:?}", map);
19981998

1999-
assert!(map_str == "HashMap {1i: 2i, 3i: 4i}" ||
2000-
map_str == "HashMap {3i: 4i, 1i: 2i}");
1999+
assert!(map_str == "HashMap {1is: 2is, 3is: 4is}" ||
2000+
map_str == "HashMap {3is: 4is, 1is: 2is}");
20012001
assert_eq!(format!("{:?}", empty), "HashMap {}");
20022002
}
20032003

‎src/libstd/collections/hash/set.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,7 @@ mod test_set {
11791179

11801180
let set_str = format!("{:?}", set);
11811181

1182-
assert!(set_str == "HashSet {1i, 2i}" || set_str == "HashSet {2i, 1i}");
1182+
assert!(set_str == "HashSet {1is, 2is}" || set_str == "HashSet {2is, 1is}");
11831183
assert_eq!(format!("{:?}", empty), "HashSet {}");
11841184
}
11851185

‎src/test/run-fail/assert-eq-macro-panic.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// error-pattern:assertion failed: `(left == right) && (right == left)` (left: `14i`, right: `15i`)
11+
// error-pattern:assertion failed: `(left == right) && (right == left)` (left: `4is`, right: `5is`)
1212

1313
fn main() {
14-
assert_eq!(14i,15i);
14+
assert_eq!(4is,5is);
1515
}

‎src/test/run-pass/deriving-show-2.rs

+8-10
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,9 @@ struct F(int);
2525
#[derive(Show)]
2626
struct G(int, int);
2727
#[derive(Show)]
28-
struct H { a: int }
28+
struct H { a: int, b: int }
2929
#[derive(Show)]
30-
struct I { a: int, b: int }
31-
#[derive(Show)]
32-
struct J(Custom);
30+
struct I(Custom);
3331

3432
struct Custom;
3533
impl fmt::Show for Custom {
@@ -51,12 +49,12 @@ impl<T: fmt::Show> ToShow for T {
5149
pub fn main() {
5250
assert_eq!(B::B1.to_show(), "B1".to_string());
5351
assert_eq!(B::B2.to_show(), "B2".to_string());
54-
assert_eq!(C::C1(3).to_show(), "C1(3i)".to_string());
52+
assert_eq!(C::C1(3).to_show(), "C1(3is)".to_string());
5553
assert_eq!(C::C2(B::B2).to_show(), "C2(B2)".to_string());
56-
assert_eq!(D::D1{ a: 2 }.to_show(), "D1 { a: 2i }".to_string());
54+
assert_eq!(D::D1{ a: 2 }.to_show(), "D1 { a: 2is }".to_string());
5755
assert_eq!(E.to_show(), "E".to_string());
58-
assert_eq!(F(3).to_show(), "F(3i)".to_string());
59-
assert_eq!(G(3, 4).to_show(), "G(3i, 4i)".to_string());
60-
assert_eq!(I{ a: 2, b: 4 }.to_show(), "I { a: 2i, b: 4i }".to_string());
61-
assert_eq!(J(Custom).to_show(), "J(yay)".to_string());
56+
assert_eq!(F(3).to_show(), "F(3is)".to_string());
57+
assert_eq!(G(3, 4).to_show(), "G(3is, 4is)".to_string());
58+
assert_eq!(H{ a: 2, b: 4 }.to_show(), "H { a: 2is, b: 4is }".to_string());
59+
assert_eq!(I(Custom).to_show(), "I(yay)".to_string());
6260
}

‎src/test/run-pass/deriving-show.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ macro_rules! t {
3232

3333
pub fn main() {
3434
t!(Unit, "Unit");
35-
t!(Tuple(1, 2), "Tuple(1i, 2u)");
36-
t!(Struct { x: 1, y: 2 }, "Struct { x: 1i, y: 2u }");
35+
t!(Tuple(1, 2), "Tuple(1is, 2us)");
36+
t!(Struct { x: 1, y: 2 }, "Struct { x: 1is, y: 2us }");
3737
t!(Enum::Nullary, "Nullary");
38-
t!(Enum::Variant(1, 2), "Variant(1i, 2u)");
39-
t!(Enum::StructVariant { x: 1, y: 2 }, "StructVariant { x: 1i, y: 2u }");
38+
t!(Enum::Variant(1, 2), "Variant(1is, 2us)");
39+
t!(Enum::StructVariant { x: 1, y: 2 }, "StructVariant { x: 1is, y: 2us }");
4040
}

‎src/test/run-pass/ifmt.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ pub fn main() {
6363
t!(format!("{}", 10i), "10");
6464
t!(format!("{}", 10u), "10");
6565
t!(format!("{:?}", '☃'), "'\\u{2603}'");
66-
t!(format!("{:?}", 10i), "10i");
67-
t!(format!("{:?}", 10u), "10u");
66+
t!(format!("{:?}", 10i), "10is");
67+
t!(format!("{:?}", 10u), "10us");
6868
t!(format!("{:?}", "true"), "\"true\"");
6969
t!(format!("{:?}", "foo\nbar"), "\"foo\\nbar\"");
7070
t!(format!("{:o}", 10u), "12");

‎src/test/run-pass/issue-3559.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ pub fn main() {
2424
let mut table = HashMap::new();
2525
table.insert("one".to_string(), 1i);
2626
table.insert("two".to_string(), 2i);
27-
assert!(check_strs(format!("{:?}", table).as_slice(), "HashMap {\"one\": 1i, \"two\": 2i}") ||
28-
check_strs(format!("{:?}", table).as_slice(), "HashMap {\"two\": 2i, \"one\": 1i}"));
27+
assert!(check_strs(format!("{:?}", table).as_slice(), "HashMap {\"one\": 1is, \"two\": 2is}") ||
28+
check_strs(format!("{:?}", table).as_slice(), "HashMap {\"two\": 2is, \"one\": 1is}"));
2929
}

‎src/test/run-pass/issue-8898.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub fn main() {
1818
let x = [(), ()];
1919
let slice = &x[..1];
2020

21-
assert_repr_eq(&abc[], "[1i, 2i, 3i]".to_string());
21+
assert_repr_eq(&abc[], "[1is, 2is, 3is]".to_string());
2222
assert_repr_eq(&tf[], "[true, false]".to_string());
2323
assert_repr_eq(&x[], "[(), ()]".to_string());
2424
assert_repr_eq(slice, "[()]".to_string());

‎src/test/run-pass/log-knows-the-names-of-variants-in-std.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ fn check_log<T: std::fmt::Show>(exp: String, v: T) {
1919
}
2020

2121
pub fn main() {
22-
let mut x = Some(foo::a(22u));
23-
let exp = "Some(a(22u))".to_string();
22+
let mut x = Some(foo::a(22us));
23+
let exp = "Some(a(22us))".to_string();
2424
let act = format!("{:?}", x);
2525
assert_eq!(act, exp);
2626
check_log(exp, x);

‎src/test/run-pass/log-knows-the-names-of-variants.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ enum bar {
2121
}
2222

2323
pub fn main() {
24-
assert_eq!("a(22u)".to_string(), format!("{:?}", foo::a(22u)));
24+
assert_eq!("a(22us)".to_string(), format!("{:?}", foo::a(22us)));
2525
assert_eq!("c".to_string(), format!("{:?}", foo::c));
2626
assert_eq!("d".to_string(), format!("{:?}", bar::d));
2727
}

‎src/test/run-pass/vec-to_str.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
// except according to those terms.
1010

1111
pub fn main() {
12-
assert_eq!(format!("{:?}", vec!(0i, 1)), "[0i, 1i]".to_string());
12+
assert_eq!(format!("{:?}", vec!(0is, 1)), "[0is, 1is]".to_string());
1313

14-
let foo = vec!(3i, 4);
14+
let foo = vec!(3is, 4);
1515
let bar: &[int] = &[4, 5];
1616

17-
assert_eq!(format!("{:?}", foo), "[3i, 4i]");
18-
assert_eq!(format!("{:?}", bar), "[4i, 5i]");
17+
assert_eq!(format!("{:?}", foo), "[3is, 4is]");
18+
assert_eq!(format!("{:?}", bar), "[4is, 5is]");
1919
}

0 commit comments

Comments
 (0)
Please sign in to comment.