From 7960dcf60191a54bf65f07ce0e3fbcda8f6e49ed Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Wed, 16 Jul 2025 12:34:11 +0200 Subject: [PATCH] Correctly recognize *-nsec3-optout-variant as "optout". Fixes: #15846 Signed-off-by: Miod Vallat --- regression-tests/start-test-stop | 8 +++++++- .../expected_result.lmdb-nsec3-optout-variant | 1 - 2 files changed, 7 insertions(+), 2 deletions(-) delete mode 120000 regression-tests/tests/1dyndns-update-nsec3params-with-others/expected_result.lmdb-nsec3-optout-variant diff --git a/regression-tests/start-test-stop b/regression-tests/start-test-stop index cd9c0e6c0b..e99c0155d9 100755 --- a/regression-tests/start-test-stop +++ b/regression-tests/start-test-stop @@ -290,7 +290,13 @@ fi optout=0 pkcs11=0 -if [ "${context: -13}" = "-nsec3-optout" ] +if [ "${context: -8}" = "-variant" ] +then + subcontext=${context%-variant} +else + subcontext=${context} +fi +if [ "${subcontext: -13}" = "-nsec3-optout" ] then optout=1 fi diff --git a/regression-tests/tests/1dyndns-update-nsec3params-with-others/expected_result.lmdb-nsec3-optout-variant b/regression-tests/tests/1dyndns-update-nsec3params-with-others/expected_result.lmdb-nsec3-optout-variant deleted file mode 120000 index b9fe5f8d68..0000000000 --- a/regression-tests/tests/1dyndns-update-nsec3params-with-others/expected_result.lmdb-nsec3-optout-variant +++ /dev/null @@ -1 +0,0 @@ -expected_result.nsec3 \ No newline at end of file -- 2.47.2