mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
11 lines
262 B
Bash
11 lines
262 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# This instruments a full benchmark suite.
|
||
|
#
|
||
|
# Usage:
|
||
|
#
|
||
|
# ./scripts/instrument/bench.sh typescript
|
||
|
|
||
|
export CARGO_MANIFEST_DIR=$(pwd)
|
||
|
export RUST_LOG=off
|
||
|
cargo profile instruments -t time --bench invoke --features rkyv-impl --release -- $@
|