Files
Alexandru Ardelean 0f34c18d65 alsa-lib: add test.sh for aserver without --version
aserver does not implement --version so the generic CI version check
fails for it. Add a test.sh case that verifies it is present and
executable instead.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-05-06 21:05:36 +03:00

9 lines
148 B
Bash

#!/bin/sh
case "$1" in
aserver)
# aserver does not implement --version; just verify it is present
[ -x /usr/bin/aserver ] || exit 1
;;
esac