#!/usr/bin/env shset-exTARGET=$1CMD="cargo test --all --target $TARGET"# stable by default$CMD$CMD --release# unstable with a feature$CMD --features'unstable'$CMD --release --features'unstable'# also run the reference tests$CMD --features'unstable musl-reference-tests'$CMD --release --features'unstable musl-reference-tests'