From: Alexandru Ardelean Date: Fri, 1 May 2026 07:22:51 +0000 (+0300) Subject: dbus: add test.sh for binaries without --version X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5b9e2dd55ea09b12c79357de68b9e1628d920adb;p=openwrt-packages.git dbus: add test.sh for binaries without --version dbus-utils utilities do not implement --version so the generic CI version check fails for them. Add a test.sh case that verifies the binaries are present and executable instead. dbus-utils: dbus-monitor, dbus-send, dbus-test-tool Signed-off-by: Alexandru Ardelean --- diff --git a/utils/dbus/test.sh b/utils/dbus/test.sh new file mode 100644 index 000000000..da8fae57a --- /dev/null +++ b/utils/dbus/test.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +case "$1" in + dbus-utils) + # dbus-monitor, dbus-send, dbus-test-tool do not implement --version + for bin in dbus-monitor dbus-send dbus-test-tool; do + [ -x "/usr/bin/$bin" ] || exit 1 + done + ;; +esac