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