diff options
| author | klutzy <klutzytheklutzy@gmail.com> | 2013-11-14 10:19:25 +0900 |
|---|---|---|
| committer | klutzy <klutzytheklutzy@gmail.com> | 2013-11-14 14:43:09 +0900 |
| commit | bbcd3465efd6a2b3cb71a8efcf4006aeb9a0557b (patch) | |
| tree | b68af6b41fadac5947d24bf4242dc16ef10c1544 | |
| parent | 09cb7ecc6729e12a6561d62744697e134d362238 (diff) | |
| download | rust-bbcd3465efd6a2b3cb71a8efcf4006aeb9a0557b.tar.gz rust-bbcd3465efd6a2b3cb71a8efcf4006aeb9a0557b.zip | |
rustpkg: Disable test suite on windows
sha1, version, util tests are still alive and they pass on win32.
| -rw-r--r-- | src/librustpkg/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustpkg/lib.rs b/src/librustpkg/lib.rs index 5e9d06f533b..0891038e8d5 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; |
