From 94ba70881d6b330a9ee7d0d5b8cabcb0f5d93dd2 Mon Sep 17 00:00:00 2001 From: Tom Jakubowski Date: Mon, 7 Jul 2014 18:07:23 -0700 Subject: [PATCH] Ignore the broken symlinks test on windows --- tests/test_cargo_compile.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_cargo_compile.rs b/tests/test_cargo_compile.rs index 771988eb3..0409e5203 100644 --- a/tests/test_cargo_compile.rs +++ b/tests/test_cargo_compile.rs @@ -627,7 +627,8 @@ test!(self_dependency { execs().with_status(0)); }) -test!(ignore_bogus_symlinks { +#[cfg(not(windows))] +test!(ignore_broken_symlinks { let p = project("foo") .file("Cargo.toml", basic_bin_manifest("foo").as_slice()) .file("src/foo.rs", main_file(r#""i am foo""#, []).as_slice())