tests: Add an option to dav1d_argon.bash for using a wrapper tool

This allows executing all the tools within e.g. valgrind.

This matches the "meson test --wrap <tool>" feature.
This commit is contained in:
Martin Storsjö
2024-09-05 23:56:48 +03:00
parent 79db162487
commit 166e1df543
+8 -3
View File
@@ -6,6 +6,7 @@ FILMGRAIN=1
CPUMASK=-1
THREADS=1
JOBS=0
WRAP=""
usage() {
NAME=$(basename "$0")
@@ -20,7 +21,8 @@ usage() {
printf " -g \$num enable filmgrain (default: 1)\n"
printf " -c \$mask use restricted cpumask (default: -1)\n"
printf " -t \$num number of threads per dav1d (default: 1)\n"
printf " -j \$num number of parallel dav1d processes (default: 0)\n\n"
printf " -j \$num number of parallel dav1d processes (default: 0)\n"
printf " -w tool execute dav1d with a wrapper tool\n\n"
} >&2
exit 1
}
@@ -79,7 +81,7 @@ if [ -d "$tests_dir/argon" ]; then
ARGON_DIR="$tests_dir/argon"
fi
while getopts ":d:a:g:c:t:j:" opt; do
while getopts ":d:a:g:c:t:j:w:" opt; do
case "$opt" in
d)
DAV1D="$OPTARG"
@@ -99,6 +101,9 @@ while getopts ":d:a:g:c:t:j:" opt; do
j)
JOBS="$OPTARG"
;;
w)
WRAP="$OPTARG"
;;
\?)
printf "Error! Invalid option: -%s\n" "$OPTARG" >&2
usage
@@ -158,7 +163,7 @@ for i in "${!files[@]}"; do
md5=${md5/ */}
printf '\033[1K\r[%3d%% %*d/%d] Verifying %s' "$(((i+1)*100/num_files))" "${#num_files}" "$((i+1))" "$num_files" "${f#"$ARGON_DIR"/}"
cmd=("$DAV1D" -i "$f" --filmgrain "$FILMGRAIN" --verify "$md5" --cpumask "$CPUMASK" --threads "$THREADS" -q)
cmd=($WRAP "$DAV1D" -i "$f" --filmgrain "$FILMGRAIN" --verify "$md5" --cpumask "$CPUMASK" --threads "$THREADS" -q)
if [ "$JOBS" -gt 1 ]; then
"${cmd[@]}" 2>/dev/null &
p=$!