From: Miod Vallat Date: Tue, 14 Jul 2026 19:52:46 +0000 (+0200) Subject: Mention the list of oracle files checked for, in case of test failures. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52d031d39302d77bc400d6de0fb2482c44e7742e;p=thirdparty%2Fpdns.git Mention the list of oracle files checked for, in case of test failures. Signed-off-by: Miod Vallat --- diff --git a/regression-tests/runtests b/regression-tests/runtests index f36ce6eb79..53242ba5b8 100755 --- a/regression-tests/runtests +++ b/regression-tests/runtests @@ -174,3 +174,13 @@ echo -n " (" res=$((echo scale=2; echo 100*$passed/\($passed+$failed\)) | bc ) echo -n "$res%) " echo tests passed, $skipped were skipped +# Display the oracle search order in case of failures +if [ $failed -gt 0 ]; then + echo -n "Oracle files searched in order:" + for extracontext in $extracontexts + do + echo -n " expected_result.$extracontext" + done + [ -n "$context" ] && echo -n " expected_result.$context" + echo "" +fi