11 lines
222 B
Bash
11 lines
222 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
quox="$PWD/../exe/build/exec/quox"
|
||
|
run_tests="$PWD/build/exec/quox-golden-tests"
|
||
|
test -f "$quox" || pack build quox
|
||
|
test -f "$run_tests" || pack build quox-golden-tests
|
||
|
|
||
|
"$run_tests" "$quox" "$@"
|