Merge pull request #682 from hyperium/fix-win-x86-nounwind

test(windows): disable a panicking test for 32-bit msvc
This commit is contained in:
Sean McArthur
2015-11-17 10:43:13 -08:00

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;