10 lines
283 B
Bash
10 lines
283 B
Bash
|
|
#!/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 "$@"
|