Files
cs420/scripts/grade-asmgen.sh
2023-02-28 13:36:58 +09:00

12 lines
320 B
Bash
Executable File

#!/usr/bin/env bash
# Exit when any command fails.
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct the code.
cargo clippy # run `cargo clippy --fix` to auto-correct the code.
# Run tests.
RUST_MIN_STACK=33554432 cargo test --release test_examples_asmgen -- --nocapture