Skip to content

Commit 6fc69a5

Browse files
committed
Tests: keep QUIC TODOs for a while.
To pass tests on the latest development release.
1 parent e1581ab commit 6fc69a5

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

quic_ciphers.t

+5
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,14 @@ is(get("\x13\x02\x13\x01"), 'TLS_AES_256_GCM_SHA384', 'ciphers many');
8989
# prefer TLS_AES_128_CCM_SHA256 with fallback to GCM,
9090
# the cipher is enabled by default in some distributions
9191

92+
TODO: {
93+
todo_skip 'not yet', 1 unless $t->has_version('1.25.2');
94+
9295
like(get("\x13\x04\x13\x01"), qr/TLS_AES_128_[GC]CM_SHA256/,
9396
'TLS_AES_128_CCM_SHA256');
9497

98+
}
99+
95100
###############################################################################
96101

97102
sub get {

quic_retry.t

+5
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,16 @@ is($frame->{error}, 11, 'retry token invalid');
108108

109109
# connection with retry token, corrupted
110110

111+
TODO: {
112+
local $TODO = 'not yet' unless $t->has_version('1.25.2');
113+
111114
substr($retry_token, 32) ^= "\xff";
112115
$s = Test::Nginx::HTTP3->new(8980, token => $retry_token, probe => 1);
113116
$frames = $s->read(all => [{ type => 'CONNECTION_CLOSE' }]);
114117

115118
($frame) = grep { $_->{type} eq "CONNECTION_CLOSE" } @$frames;
116119
is($frame->{error}, 11, 'retry token decrypt error');
117120

121+
}
122+
118123
###############################################################################

0 commit comments

Comments
 (0)