#!/usr/bin/env bash
|
|
|
|
# We want the code to panic if there is an integer overflow
|
|
export RUSTFLAGS="-C overflow-checks=on"
|
|
|
|
cargo test --release -- -Zunstable-options --report-time
|
|
|