From 04ffe42f17efea6f9ea82a002856d85cc257e315 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Wed, 30 Jul 2025 15:13:44 +0200 Subject: [PATCH] Remove QUIC as there are different outputs for Mac+Ubuntu --- t/61_diff_testsslsh.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/t/61_diff_testsslsh.t b/t/61_diff_testsslsh.t index 1cac5e3..cdcf7cf 100755 --- a/t/61_diff_testsslsh.t +++ b/t/61_diff_testsslsh.t @@ -63,11 +63,14 @@ $cat_csv =~ s/AEAD-CHACHA20-POLY1305-SHA256/TLS_CHACHA20_POLY1305_SHA256/g; $cat_csv =~ s/ECDH 253/ECDH 256/g; $baseline_csv =~ s/ECDH 253/ECDH 256/g; - # this could contain the openssl path $cat_csv =~ s/"engine_problem.*\n//g; $baseline_csv =~ s/"engine_problem.*\n//g; +# QUIC gives different results on different platforms +$cat_csv =~ s/"QUIC.*\n//g; +$baseline_csv =~ s/"QUIC.*\n//g; + $diff = diff \$cat_csv, \$baseline_csv; # Compare the differences to the baseline file -- and print differences if there were detected.