From: Bjørn Mork Date: Mon, 5 Feb 2024 20:41:52 +0000 (+0100) Subject: conserver: add runtime test X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=69890a80822d598bac87af29c7904436e2592e6b;p=openwrt-packages.git conserver: add runtime test Simply test that both variants produce a binary for now Signed-off-by: Bjørn Mork --- diff --git a/net/conserver/test.sh b/net/conserver/test.sh new file mode 100755 index 000000000..59ffcfe30 --- /dev/null +++ b/net/conserver/test.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +case "$1" in + "conserver") + conserver -V | grep "$2" + ;; + "conserver-ipmi") + conserver -V | grep "$2" + ;; +esac