]> git.lizzy.rs Git - rust.git/blob - src/libcollections/tests/lib.rs
Add test for vecs with overaligned data
[rust.git] / src / libcollections / tests / lib.rs
1 // Copyright 2015 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 #![deny(warnings)]
12
13 #![feature(attr_literals)]
14 #![feature(box_syntax)]
15 #![feature(inclusive_range_syntax)]
16 #![feature(collection_placement)]
17 #![feature(collections)]
18 #![feature(const_fn)]
19 #![feature(exact_size_is_empty)]
20 #![feature(pattern)]
21 #![feature(placement_in_syntax)]
22 #![feature(rand)]
23 #![feature(repr_align)]
24 #![feature(slice_rotate)]
25 #![feature(splice)]
26 #![feature(step_by)]
27 #![feature(str_escape)]
28 #![feature(test)]
29 #![feature(unboxed_closures)]
30 #![feature(unicode)]
31 #![feature(utf8_error_error_len)]
32
33 extern crate collections;
34 extern crate test;
35 extern crate std_unicode;
36 extern crate core;
37
38 use std::hash::{Hash, Hasher};
39 use std::collections::hash_map::DefaultHasher;
40
41 mod binary_heap;
42 mod btree;
43 mod cow_str;
44 mod fmt;
45 mod linked_list;
46 mod slice;
47 mod str;
48 mod string;
49 mod vec_deque;
50 mod vec;
51
52 fn hash<T: Hash>(t: &T) -> u64 {
53     let mut s = DefaultHasher::new();
54     t.hash(&mut s);
55     s.finish()
56 }