Skip to content

Commit

Permalink
Temp remove miri, waiting for rust-lang/miri#641
Browse files Browse the repository at this point in the history
  • Loading branch information
elichai committed Aug 26, 2019
1 parent 6882d73 commit 1602b62
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ before_script:
cargo fmt --all -- --check;
cargo clippy --all-targets --all-features -- -Dwarnings -Aclippy::transmute_int_to_float -Aclippy::new-without-default;
fi
- if [ ${TRAVIS_RUST_VERSION} == "nightly" ]; then
cd "${TRAVIS_BUILD_DIR}/random-trait"
rustup component add miri;
cargo miri setup;
cargo miri test -- -- -Zunstable-options --exclude-should-panic;

cd "${TRAVIS_BUILD_DIR}/random-fast-rng"
rustup component add miri;
cargo miri setup;
cargo miri test -- -- -Zunstable-options --exclude-should-panic;
fi
# - if [ ${TRAVIS_RUST_VERSION} == "nightly" ]; then
# cd "${TRAVIS_BUILD_DIR}/random-trait"
# rustup component add miri;
# cargo miri setup;
# cargo miri test -- -- -Zunstable-options --exclude-should-panic;
#
# cd "${TRAVIS_BUILD_DIR}/random-fast-rng"
# rustup component add miri;
# cargo miri setup;
# cargo miri test -- -- -Zunstable-options --exclude-should-panic;
# fi

notifications:
email:
Expand Down
2 changes: 1 addition & 1 deletion random-fast-rng/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ random-fast-rng = "0.1"
# Examples

```rust
use fast_rng::{FastRng, Random};
use random_fast_rng::{FastRng, Random};

fn do_something() {
let mut rng = FastRng::new();
Expand Down

0 comments on commit 1602b62

Please sign in to comment.