a789495a98
FreeBSD Smoke / FreeBSD Smoke (x86_64) (push) Has been cancelled
CI / Quality Guardrails (push) Has been cancelled
CI / Build & Test (macos-latest) (push) Has been cancelled
CI / Build & Test (ubuntu-latest) (push) Has been cancelled
CI / Build & Test (windows-latest) (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / PowerShell Syntax (push) Has been cancelled
CI / Windows Cross-Target Check (Linux) (push) Has been cancelled
14 lines
380 B
Bash
Executable File
14 lines
380 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
|
|
binary=${1:-"$repo_root/target/release/jcode"}
|
|
|
|
if [[ ! -x "$binary" ]]; then
|
|
echo "Binary not found or not executable: $binary" >&2
|
|
echo "Build it first with: cargo build --release" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exec python3 "$repo_root/scripts/bench_startup.py" "$binary" --check --runs 3
|