test(windows): disable a panicking test for 32-bit msvc

This commit is contained in:
Sean McArthur
2015-11-16 12:11:13 -08:00
parent 2bb906ad7f
commit 8a5139e95f

View File

@@ -348,6 +348,9 @@ mod tests {
}
}
// x86 windows msvc does not support unwinding
// See https://github.com/rust-lang/rust/issues/25869
#[cfg(not(all(windows, target_arch="x86", target_env="msvc")))]
#[test]
fn test_fresh_drop_panicing() {
use std::thread;