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 --all-features
16cargo test --release --all-features -- --ignored
17