Add hw7 small grader

This commit is contained in:
Minseong Jang
2022-04-22 11:43:14 +09:00
parent 1d2e46cc81
commit cf9893fbc3

11
scripts/grade-hw7-small.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
# Exit when any command fails.
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
# Run tests.
RUST_MIN_STACK=33554432 cargo test --release test_examples_asmgen_small