diff quic_retry.t @ 1919:161dc73812b3

Tests: keep QUIC TODOs for a while. To pass tests on the latest development release.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 10 Jul 2023 18:30:08 +0400
parents 15131dd931a0
children 24482e311749
line wrap: on
line diff
--- a/quic_retry.t
+++ b/quic_retry.t
@@ -108,6 +108,9 @@ is($frame->{error}, 11, 'retry token inv
 
 # connection with retry token, corrupted
 
+TODO: {
+local $TODO = 'not yet' unless $t->has_version('1.25.2');
+
 substr($retry_token, 32) ^= "\xff";
 $s = Test::Nginx::HTTP3->new(8980, token => $retry_token, probe => 1);
 $frames = $s->read(all => [{ type => 'CONNECTION_CLOSE' }]);
@@ -115,4 +118,6 @@ substr($retry_token, 32) ^= "\xff";
 ($frame) = grep { $_->{type} eq "CONNECTION_CLOSE" } @$frames;
 is($frame->{error}, 11, 'retry token decrypt error');
 
+}
+
 ###############################################################################