Disable the new Hasher tests on Emscripten.

This commit is contained in:
kennytm 2017-09-11 00:13:19 +08:00
parent 0bbe468271
commit 143e2dcd5c
No known key found for this signature in database
GPG key ID: FEF6C8051D0E013C
3 changed files with 7 additions and 0 deletions

View file

@ -51,6 +51,9 @@ fn hash<T: Hash>(t: &T) -> u64 {
s.finish()
}
// FIXME: Instantiated functions with i128 in the signature is not supported in Emscripten.
// See https://github.com/kripken/emscripten-fastcomp/issues/169
#[cfg(not(target_os = "emscripten"))]
#[test]
fn test_boxed_hasher() {
let ordinary_hash = hash(&5u32);

View file

@ -110,6 +110,9 @@ fn test_custom_state() {
assert_eq!(hash(&Custom { hash: 5 }), 5);
}
// FIXME: Instantiated functions with i128 in the signature is not supported in Emscripten.
// See https://github.com/kripken/emscripten-fastcomp/issues/169
#[cfg(not(target_os = "emscripten"))]
#[test]
fn test_indirect_hasher() {
let mut hasher = MyHasher { hash: 0 };

View file

@ -76,6 +76,7 @@ const EXCEPTION_PATHS: &'static [&'static str] = &[
// std testing crates, ok for now at least
"src/libcore/tests",
"src/liballoc/tests/lib.rs",
// non-std crates
"src/test",