mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
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>
This commit is contained in:
committed by
Alexandru Ardelean
parent
cc17ed7fa4
commit
0f34c18d65
@@ -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
|
||||||
Reference in New Issue
Block a user