All checks were successful
PR Checklist / pr-checklist (pull_request) Successful in 1m19s
10 lines
283 B
Bash
Executable File
10 lines
283 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# test_runner.sh — Convenience wrapper for test_harness.sh
|
|
# Runs the test harness with sensible defaults for local development.
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
exec "${SCRIPT_DIR}/test_harness.sh" --verbose "$@"
|