Skip to content
Snippets Groups Projects
  1. Mar 12, 2025
  2. Mar 11, 2025
  3. Mar 10, 2025
  4. Mar 09, 2025
  5. Mar 08, 2025
  6. Mar 05, 2025
  7. Mar 04, 2025
  8. Mar 03, 2025
  9. Mar 02, 2025
    • Neil Horman's avatar
      Remove empty buffer check in script_84 of quic_multistream_test · 4f2f5179
      Neil Horman authored
      
      The quic_multistream_test occasionally fails script_84, specifically
      failing on:
      
      OP_CHECK2(check_write_buf_stat, 0, 0)
      
      which fails due to the send stream buffer not reading zero after data is
      sent on the stream
      
      However, the send stream is culled of pending data, not after the stream
      is sent, but rather only after the peer sends an ack confirming that the
      data has been received.  There is no guarantee that ACK will be sent
      immediately, so occasionally timing discrepancies result in the test not
      getting that ack by the time we check the send stream buffer.
      
      We couldmodify the script to wait longer, or repeatedly tick the quic
      stack to wait for that ack to be collected, but since its perfectly
      valid for that data to live in the ring buffer for a period, and that
      any true erroneous keeping of that data beyond its ack point would
      manifest as any number of other duplicate transmissions, it seems more
      sane to just remove the check.
      
      Fixes openssl/project#1117
      
      Reviewed-by: default avatarSaša Nedvědický <sashan@openssl.org>
      Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/26939)
      4f2f5179
  10. Mar 01, 2025
Loading