Update script comments

This commit is contained in:
jungin.rhee
2023-02-28 13:36:58 +09:00
parent b51e717ec3
commit 6401efb435
8 changed files with 16 additions and 16 deletions

View File

@@ -4,8 +4,8 @@
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
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_small -- --nocapture

View File

@@ -4,8 +4,8 @@
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
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

View File

@@ -4,8 +4,8 @@
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
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_deadcode -- --nocapture

View File

@@ -4,8 +4,8 @@
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
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_gvn -- --nocapture

View File

@@ -4,8 +4,8 @@
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
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_irgen_small -- --nocapture

View File

@@ -4,8 +4,8 @@
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
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_irgen -- --nocapture

View File

@@ -4,8 +4,8 @@
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
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_mem2reg -- --nocapture

View File

@@ -4,8 +4,8 @@
set -e
# Run lints.
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
cargo clippy
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_simplify_cfg -- --nocapture