• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3set -ex
4
5rm -f Cargo.lock
6cargo build
7
8if [ "$RUST_VERSION" = 1.31.0 ] ; then
9	exit
10fi
11
12# Allow some warnings on the very old compiler.
13export RUSTFLAGS="-D warnings"
14
15cargo test --release --features weak,internal-test-strategies,experimental-strategies
16cargo test --release --features weak,internal-test-strategies,experimental-strategies -- --ignored
17