diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2014-02-21 21:33:23 -0800 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2014-02-21 21:33:23 -0800 |
| commit | d223dd1e57cc412aa2eff28e6604f86b9f013083 (patch) | |
| tree | aa8d3f01f77b0a74c024d1632df29d5a95f4724e /src/test | |
| parent | 0135b521ad38615e9a07aac54d9c22627af57ca4 (diff) | |
| download | rust-d223dd1e57cc412aa2eff28e6604f86b9f013083.tar.gz rust-d223dd1e57cc412aa2eff28e6604f86b9f013083.zip | |
std: rewrite Hash to make it more generic
This patch merges IterBytes and Hash traits, which clears up the confusion of using `#[deriving(IterBytes)]` to support hashing. Instead, it now is much easier to use the new `#[deriving(Hash)]` for making a type hashable with a stream hash. Furthermore, it supports custom non-stream-based hashers, such as if a value's hash was cached in a database. This does not yet replace the old IterBytes-hash with this new version.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/compile-fail/deriving-span-Hash-enum-struct-variant.rs | 27 | ||||
| -rw-r--r-- | src/test/compile-fail/deriving-span-Hash-enum.rs | 27 | ||||
| -rw-r--r-- | src/test/compile-fail/deriving-span-Hash-struct.rs | 25 | ||||
| -rw-r--r-- | src/test/compile-fail/deriving-span-Hash-tuple-struct.rs | 25 | ||||
| -rw-r--r-- | src/test/run-pass/deriving-hash.rs | 28 | ||||
| -rw-r--r-- | src/test/run-pass/deriving-meta-multiple.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/deriving-meta.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/typeid-intrinsic.rs | 1 |
8 files changed, 137 insertions, 0 deletions
diff --git a/src/test/compile-fail/deriving-span-Hash-enum-struct-variant.rs b/src/test/compile-fail/deriving-span-Hash-enum-struct-variant.rs new file mode 100644 index 00000000000..182c669cbea --- /dev/null +++ b/src/test/compile-fail/deriving-span-Hash-enum-struct-variant.rs @@ -0,0 +1,27 @@ +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// This file was auto-generated using 'src/etc/generate-keyword-span-tests.py' + +#[feature(struct_variant)]; +extern crate extra; + +use std::hash::Hash; + +struct Error; + +#[deriving(Hash)] +enum Enum { + A { + x: Error //~ ERROR + } +} + +fn main() {} diff --git a/src/test/compile-fail/deriving-span-Hash-enum.rs b/src/test/compile-fail/deriving-span-Hash-enum.rs new file mode 100644 index 00000000000..7617e0a33c3 --- /dev/null +++ b/src/test/compile-fail/deriving-span-Hash-enum.rs @@ -0,0 +1,27 @@ +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// This file was auto-generated using 'src/etc/generate-keyword-span-tests.py' + +#[feature(struct_variant)]; +extern crate extra; + +use std::hash::Hash; + +struct Error; + +#[deriving(Hash)] +enum Enum { + A( + Error //~ ERROR + ) +} + +fn main() {} diff --git a/src/test/compile-fail/deriving-span-Hash-struct.rs b/src/test/compile-fail/deriving-span-Hash-struct.rs new file mode 100644 index 00000000000..f20da9a9d16 --- /dev/null +++ b/src/test/compile-fail/deriving-span-Hash-struct.rs @@ -0,0 +1,25 @@ +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// This file was auto-generated using 'src/etc/generate-keyword-span-tests.py' + +#[feature(struct_variant)]; +extern crate extra; + +use std::hash::Hash; + +struct Error; + +#[deriving(Hash)] +struct Struct { + x: Error //~ ERROR +} + +fn main() {} diff --git a/src/test/compile-fail/deriving-span-Hash-tuple-struct.rs b/src/test/compile-fail/deriving-span-Hash-tuple-struct.rs new file mode 100644 index 00000000000..9b7ae50b738 --- /dev/null +++ b/src/test/compile-fail/deriving-span-Hash-tuple-struct.rs @@ -0,0 +1,25 @@ +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// This file was auto-generated using 'src/etc/generate-keyword-span-tests.py' + +#[feature(struct_variant)]; +extern crate extra; + +use std::hash::Hash; + +struct Error; + +#[deriving(Hash)] +struct Struct( + Error //~ ERROR +); + +fn main() {} diff --git a/src/test/run-pass/deriving-hash.rs b/src/test/run-pass/deriving-hash.rs new file mode 100644 index 00000000000..087b7ce56ab --- /dev/null +++ b/src/test/run-pass/deriving-hash.rs @@ -0,0 +1,28 @@ +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// ignore-fast + +use std::hash; +use std::hash::Hash; + +#[deriving(Hash)] +struct Person { + id: uint, + name: ~str, + phone: uint, +} + +fn main() { + let person1 = Person { id: 5, name: ~"Janet", phone: 555_666_7777 }; + let person2 = Person { id: 5, name: ~"Bob", phone: 555_666_7777 }; + assert!(hash::hash(&person1) == hash::hash(&person1)); + assert!(hash::hash(&person1) != hash::hash(&person2)); +} diff --git a/src/test/run-pass/deriving-meta-multiple.rs b/src/test/run-pass/deriving-meta-multiple.rs index c65cae6d3b9..49bf101954b 100644 --- a/src/test/run-pass/deriving-meta-multiple.rs +++ b/src/test/run-pass/deriving-meta-multiple.rs @@ -10,6 +10,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +use std::hash_old::Hash; + #[deriving(Eq)] #[deriving(Clone)] #[deriving(IterBytes)] diff --git a/src/test/run-pass/deriving-meta.rs b/src/test/run-pass/deriving-meta.rs index cbe54790404..93193fc9d65 100644 --- a/src/test/run-pass/deriving-meta.rs +++ b/src/test/run-pass/deriving-meta.rs @@ -10,6 +10,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +use std::hash_old::Hash; + #[deriving(Eq, Clone, IterBytes)] struct Foo { bar: uint, diff --git a/src/test/run-pass/typeid-intrinsic.rs b/src/test/run-pass/typeid-intrinsic.rs index 71e19b51c72..2d5c1d100be 100644 --- a/src/test/run-pass/typeid-intrinsic.rs +++ b/src/test/run-pass/typeid-intrinsic.rs @@ -15,6 +15,7 @@ extern crate other1 = "typeid-intrinsic"; extern crate other2 = "typeid-intrinsic2"; +use std::hash_old::Hash; use std::unstable::intrinsics; use std::unstable::intrinsics::TypeId; |
