]> git.proxmox.com Git - rustc.git/blob - src/test/run-pass/issue-3559.rs
Imported Upstream version 0.6
[rustc.git] / src / test / run-pass / issue-3559.rs
1 // xfail-fast
2
3 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 // rustc --test map_to_str.rs && ./map_to_str
14 extern mod std;
15
16 use core::io::{WriterUtil};
17
18 #[cfg(test)]
19 fn check_strs(actual: &str, expected: &str) -> bool
20 {
21 if actual != expected
22 {
23 io::stderr().write_line(fmt!("Found %s, but expected %s", actual, expected));
24 return false;
25 }
26 return true;
27 }
28
29 #[test]
30 fn tester()
31 {
32 let mut table = core::hashmap::linear::LinearMap();
33 table.insert(@~"one", 1);
34 table.insert(@~"two", 2);
35 assert!(check_strs(table.to_str(), ~"xxx")); // not sure what expected should be
36 }
37
38 pub fn main() {}