From bbcd3465efd6a2b3cb71a8efcf4006aeb9a0557b Mon Sep 17 00:00:00 2001 From: klutzy Date: Thu, 14 Nov 2013 10:19:25 +0900 Subject: [PATCH] rustpkg: Disable test suite on windows sha1, version, util tests are still alive and they pass on win32. --- src/librustpkg/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustpkg/lib.rs b/src/librustpkg/lib.rs index 5e9d06f533bb..0891038e8d5f 100644 --- a/src/librustpkg/lib.rs +++ b/src/librustpkg/lib.rs @@ -70,7 +70,7 @@ mod search; mod sha1; mod source_control; mod target; -#[cfg(test)] +#[cfg(not(windows), test)] // FIXME test failure on windows: #10471 mod tests; mod util; pub mod version;