mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 15:08:52 +00:00
Update skeleton
This commit is contained in:
@@ -28,13 +28,14 @@ cargo run --release -- examples/fibonacci.c # compile with release build
|
||||
## Test
|
||||
|
||||
```
|
||||
cargo test # debug build test
|
||||
cargo test --release # release build test
|
||||
RUST_MIN_STACK=8388608 cargo test # debug build test
|
||||
RUST_MIN_STACK=8388608 cargo test --release # release build test
|
||||
|
||||
cargo test <test-name> # run a particular test
|
||||
RUST_MIN_STACK=8388608 cargo test <test-name> # run a particular test
|
||||
```
|
||||
|
||||
`<test-name>` can be `test_examples_write_c`, `test_examples_irgen`, ...
|
||||
`RUST_MIN_STACK=8388608` is necessary for deep call stack for irgen tests. `<test-name>` can be
|
||||
`test_examples_write_c`, `test_examples_irgen`, ...
|
||||
|
||||
|
||||
## Fuzzing
|
||||
|
||||
Reference in New Issue
Block a user