Files
cs420/scripts/grade-hw1.sh
Minseong Jang 3502d7193e Add hw2 grader
2022-03-14 10:33:28 +09:00

13 lines
295 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 format.
cargo clippy
# Run tests.
RUST_MIN_STACK=33554432 cargo test --release test_examples_write_c
RUST_MIN_STACK=33554432 python3 tests/fuzz.py --print -n30