File tree 1 file changed +2
-4
lines changed
quic/s2n-quic-core/src/inet
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -401,15 +401,13 @@ mod tests {
401
401
}
402
402
}
403
403
404
- // Reduce the length to 4 for Kani until
405
- // https://github.com/model-checking/kani/issues/3030 is fixed
406
404
#[ cfg( any( kani, miri) ) ]
407
- const LEN : usize = if cfg ! ( kani) { 4 } else { 32 } ;
405
+ const LEN : usize = if cfg ! ( kani) { 16 } else { 32 } ;
408
406
409
407
/// * Compares the implementation to a port of the C code defined in the RFC
410
408
/// * Ensures partial writes are correctly handled, even if they're not at a 16 bit boundary
411
409
#[ test]
412
- #[ cfg_attr( kani, kani:: proof, kani:: unwind( 9 ) , kani:: solver( cadical) ) ]
410
+ #[ cfg_attr( kani, kani:: proof, kani:: unwind( 17 ) , kani:: solver( cadical) ) ]
413
411
fn differential ( ) {
414
412
#[ cfg( any( kani, miri) ) ]
415
413
type Bytes = crate :: testing:: InlineVec < u8 , LEN > ;
You can’t perform that action at this time.
0 commit comments