mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
10 lines
266 B
Plaintext
10 lines
266 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. DoBuildFiles/generic.properties
|
||
|
|
||
|
{ [ -z "$BUILDVERBOSE" ] && [ -z "$TESTVERBOSE" ]; } || set -- -v "$@"
|
||
|
[ -z "$VERBOSE" ] || set -x
|
||
|
|
||
|
exec meson test -C "${PWD}/meson" --num-processes "$NPROC" --print-errorlogs --wrap 'valgrind --error-exitcode=1' "$@"
|
||
|
|