From 557c85438870361f184653024ed23c0c8ba9ff81 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 10 Oct 2016 16:44:11 -0700 Subject: [PATCH] pass --target on appveyor --- appveyor.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 39e6845..f6108c6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,8 +28,8 @@ install: build: false test_script: - - cargo test - - cargo test --features parallel - - cargo test --manifest-path gcc-test/Cargo.toml - - cargo test --manifest-path gcc-test/Cargo.toml --features parallel - - cargo test --manifest-path gcc-test/Cargo.toml --release + - cargo test --target %TARGET% + - cargo test --features parallel --target %TARGET% + - cargo test --manifest-path gcc-test/Cargo.toml --target %TARGET% + - cargo test --manifest-path gcc-test/Cargo.toml --features parallel --target %TARGET% + - cargo test --manifest-path gcc-test/Cargo.toml --release --target %TARGET%