From 644e01e28ab36b35ec7063337d4f7dc9315837a6 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Tue, 23 Jan 2024 13:48:20 +0100 Subject: [PATCH] rec: fix YAML conversion test This test has race condition and after #13728, an output line can occur multilpe times in the output. So filter those. --- regression-tests.recursor/YAMLConversion/command | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-tests.recursor/YAMLConversion/command b/regression-tests.recursor/YAMLConversion/command index 330dd0fe96..b8e9880d12 100755 --- a/regression-tests.recursor/YAMLConversion/command +++ b/regression-tests.recursor/YAMLConversion/command @@ -25,7 +25,7 @@ ${RECCONTROL} --config-dir=. quit-nicely if [ $? = 0 ]; then break fi -done +done | uniq set -e diff -u apizones.expected $d2/apizones -- 2.47.2