Merge pull request #3243 from flip1995/appveyor_disable_dogfood

Disable dogfood under windows until rust-lang-nursery/rustup.rs#1499 is merged
This commit is contained in:
Manish Goregaokar 2018-10-02 12:20:14 +02:00 committed by GitHub
commit 902aca70bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();