From: Willem Toorop Date: Wed, 10 Jun 2026 10:21:00 +0000 (+0200) Subject: Skip 21-match-response-with-query.tpkg on MacOS X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71663e276037e519066197bca2d56c6d139a6d7b;p=thirdparty%2Fldns.git Skip 21-match-response-with-query.tpkg on MacOS Because the test needs ldns-testns to bind to 127.0.0.2 which MacOS cannot. --- diff --git a/test/test_all.sh b/test/test_all.sh index c727d8a5..b4314879 100755 --- a/test/test_all.sh +++ b/test/test_all.sh @@ -22,6 +22,7 @@ then fi is_freebsd=$(uname -s 2>&1 | grep -i -c 'freebsd') +is_macos=$(uname -s 2>&1 | grep -i -c 'darwin') test_tool_avail "dig" echo start the test at "$(date)" in "$(pwd)" @@ -33,6 +34,11 @@ if [[ "$is_freebsd" -eq 0 ]]; then $TPKG -a ../.. fake 02-lint.tpkg fi +# Test needs to bind to 127.0.0.2 which doesn't work on MacOS +if [[ "$is_macos" -ne 0 ]]; then + $TPKG -a ../.. fake 21-match-response-with-query.tpkg +fi + $TPKG -a ../.. fake 07-compile-examples.tpkg $TPKG -a ../.. fake 16-compile-builddir.tpkg $TPKG -a ../.. fake 30-load-pyldns.tpkg