Skip to content

Commit

Permalink
Auto merge of #1261 - RalfJung:cross-gnu, r=RalfJung
Browse files Browse the repository at this point in the history
cross-running windows-gnu should now also work

Fixes #1198
  • Loading branch information
bors committed Mar 25, 2020
2 parents a84d8a8 + 8ffbca7 commit c6e8838
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/cargo-miri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::ops::Not;
use std::path::{Path, PathBuf};
use std::process::Command;

const XARGO_MIN_VERSION: (u32, u32, u32) = (0, 3, 19);
const XARGO_MIN_VERSION: (u32, u32, u32) = (0, 3, 20);

const CARGO_MIRI_HELP: &str = r#"Interprets bin crates and tests in Miri
Expand Down
2 changes: 2 additions & 0 deletions travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,6 @@ if [ "$TRAVIS_OS_NAME" == linux ]; then
elif [ "$TRAVIS_OS_NAME" == osx ]; then
# cross-test 64bit Windows from macOS
MIRI_TEST_TARGET=x86_64-pc-windows-msvc run_tests
# cross-test 32bit GNU Windows from macOS
MIRI_TEST_TARGET=i686-pc-windows-gnu run_tests
fi

0 comments on commit c6e8838

Please sign in to comment.