From: Alexandru Ardelean Date: Fri, 1 May 2026 16:33:03 +0000 (+0300) Subject: alsa-lib: add test.sh for aserver without --version X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=0f34c18d6512c26c8e751a1d5c8ebaf0de217a74;p=openwrt-packages.git 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 --- diff --git a/libs/alsa-lib/test.sh b/libs/alsa-lib/test.sh new file mode 100644 index 000000000..d69881fed --- /dev/null +++ b/libs/alsa-lib/test.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +case "$1" in + aserver) + # aserver does not implement --version; just verify it is present + [ -x /usr/bin/aserver ] || exit 1 + ;; +esac