openzwave: add test.sh

MinOZW does not implement any --version flag, so skip the generic
version check. Just verify the binary is present and executable.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
This commit is contained in:
Alexandru Ardelean
2026-05-02 22:03:39 +03:00
committed by Alexandru Ardelean
parent b6f828b331
commit 89e4a2fe3f
+6
View File
@@ -0,0 +1,6 @@
#!/bin/sh
case "$1" in
openzwave)
[ -x /usr/bin/MinOZW ] || exit 1
;;
esac