test(windows): Ignore #[should_panic] tests on 32-bit msvc

Signed-off-by: Peter Atashian <retep998@gmail.com>
This commit is contained in:
Peter Atashian
2015-09-10 00:09:14 -04:00
parent 4d7c04e035
commit e0b9a11c9c

View File

@@ -200,13 +200,15 @@ mod tests {
}
#[test]
#[should_panic]
#[should_panic] // FIXME - 32-bit msvc unwinding broken
#[cfg_attr(all(target_arch="x86", target_env="msvc"), ignore)]
fn test_quality_invalid() {
q(-1.0);
}
#[test]
#[should_panic]
#[should_panic] // FIXME - 32-bit msvc unwinding broken
#[cfg_attr(all(target_arch="x86", target_env="msvc"), ignore)]
fn test_quality_invalid2() {
q(2.0);
}