commit 4e95fcc8529127760a6eb3348f6747b7376f01f4 parent eb696eab4e8cdba7cf297e5129637e02278c1556 Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 22 Dec 2025 20:56:20 +0100 skip tests if taler-merchant is not available Diffstat:
| M | src/auditor/test-auditor.sh | | | 4 | ++++ |
| M | src/auditor/test-sync.sh | | | 4 | ++++ |
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/auditor/test-auditor.sh b/src/auditor/test-auditor.sh @@ -2213,6 +2213,10 @@ export DB="auditor-basedb" # test required commands exist echo "Testing for jq" jq -h > /dev/null || exit_skip "jq required" +echo "Testing for taler-merchant-config" +taler-merchant-config -h > /dev/null || exit_skip "taler-merchant-config required" +echo "Testing for taler-merchant-httpd" +taler-merchant-httpd -h > /dev/null || exit_skip "taler-merchant-httpd required" echo "Testing for faketime" faketime -h > /dev/null || exit_skip "faketime required" # NOTE: really check for all three libeufin commands? diff --git a/src/auditor/test-sync.sh b/src/auditor/test-sync.sh @@ -143,6 +143,10 @@ function check_with_database() # test required commands exist echo "Testing for jq" jq -h > /dev/null || exit_skip "jq required" +echo "Testing for taler-merchant-config" +taler-merchant-config -h > /dev/null || exit_skip "taler-merchant-config required" +echo "Testing for taler-merchant-httpd" +taler-merchant-httpd -h > /dev/null || exit_skip "taler-merchant-httpd required" echo "Testing for faketime" faketime -h > /dev/null || exit_skip "faketime required" echo "Testing for libeufin-bank"