mirror of
https://github.com/kmc7468/cs420.git
synced 2026-06-21 06:38:47 +09:00
Add hw7 small grader
This commit is contained in:
Executable
+11
@@ -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
|
||||
Reference in New Issue
Block a user