Skip to content

Commit

Permalink
tests/net_inet/tls_text_errors.py: Tweak test for newer CPython version.
Browse files Browse the repository at this point in the history
Signed-off-by: Damien George <damien@micropython.org>
  • Loading branch information
dpgeorge committed May 27, 2024
1 parent e1111d8 commit a34b5d1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/net_inet/tls_text_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ def test(addr):
# mbedtls produces "mbedtls -0x7200: SSL - An invalid SSL record was received"
# axtls produces "RECORD_OVERFLOW" but also prints "TLS buffer overflow,..."
# CPython produces "[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1108)"
# CPython newer version produces "[SSL] record layer failure (_ssl.c:1000)"
ok = (
"SSL_INVALID_RECORD" in str(e)
or "RECORD_OVERFLOW" in str(e)
or "wrong version" in str(e)
or "record layer failure" in str(e)
)
print("wrap:", ok)
if not ok:
Expand Down

0 comments on commit a34b5d1

Please sign in to comment.