0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-30 11:53:52 +01:00

ignore should_fail tests on windows

This commit is contained in:
Niko Matsakis 2012-08-21 20:49:35 -07:00
parent ce3cc46ce6
commit 907f5b4672

View File

@ -62,6 +62,7 @@ impl<T> Data<T> {
}
#[test]
#[ignore(cfg(windows))]
#[should_fail]
fn test_mut_in_imm() {
let m = Managed(1);
@ -73,6 +74,7 @@ fn test_mut_in_imm() {
}
#[test]
#[ignore(cfg(windows))]
#[should_fail]
fn test_imm_in_mut() {
let m = Managed(1);
@ -129,6 +131,7 @@ fn test_const_in_imm() {
#[test]
#[ignore(cfg(windows))]
#[should_fail]
fn test_mut_in_imm_in_const() {
let m = Managed(1);