2022-04-17 13:16:40 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# This instruments a full benchmark suite.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
|
|
|
# ./scripts/instrument/bench.sh typescript
|
|
|
|
|
|
|
|
|
|
|
|
export RUST_LOG=off
|
2022-08-03 09:20:04 +03:00
|
|
|
cargo profile instruments -t time --bench full --features concurrent --release -- $@
|