#!/bin/sh # # Run the automated tests for the project. set -eu hideok=chronic if [ "$#" -gt 0 ] then case "$1" in verbose | -v | --verbose) hideok= shift ;; esac fi got_cargo_cmd() { cargo "$1" --help > /dev/null } got_cargo_cmd clippy && cargo clippy -q $hideok cargo build --all-targets got_cargo_cmd fmt && $hideok cargo fmt -- --check $hideok cargo test sp-docgen bumper.md -o bumper.html sp-docgen bumper.md -o bumper.pdf sp-codegen bumper.md -o test.py rm -f test.log $hideok python3 test.py --log test.log "$@" echo "Everything seems to be in order."