#!/bin/bash set -ex export ASAN_OPTIONS="detect_odr_violation=0 detect_leaks=0" # Run address sanitizer with cargo-hack RUSTFLAGS="-Z sanitizer=address" \ cargo hack test --lib --each-feature --exclude-features serde # Run leak sanitizer with cargo-hack RUSTFLAGS="-Z sanitizer=leak" \ cargo hack test --lib --each-feature --exclude-features serde # Run thread sanitizer with cargo-hack RUSTFLAGS="-Z sanitizer=thread" \ cargo hack -Zbuild-std test --lib --each-feature --exclude-features serde --target x86_64-unknown-linux-gnu