Disable dogfood until rust-lang-nursery/rustup.rs#1499 is merged

This commit is contained in:
flip1995 2018-09-30 12:59:15 +02:00
parent 5f9af5f69c
commit 14335f372b
No known key found for this signature in database
GPG Key ID: E8E897A5870E41C2
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#[test]
fn dogfood() {
if option_env!("RUSTC_TEST_SUITE").is_some() {
if option_env!("RUSTC_TEST_SUITE").is_some() || cfg!(windows) {
return;
}
let root_dir = std::env::current_dir().unwrap();