Skip to content

Commit

Permalink
Disable flaky unit test on OSX (#4379)
Browse files Browse the repository at this point in the history
* Fix #4375: Disable flaky unit test on OSX

* cleanup
  • Loading branch information
polybassa authored May 9, 2024
1 parent 0d7b148 commit 9dcee45
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions test/contrib/automotive/doip.uts
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,6 @@ import ssl
import tempfile

= Test DoIPSocket
~ automotive_comm

server_up = threading.Event()
def server():
Expand Down Expand Up @@ -419,7 +418,7 @@ assert len(pkts) == 2


= Test DoIPSocket 2
~ automotive_comm
~ linux

server_up = threading.Event()
def server():
Expand Down Expand Up @@ -450,7 +449,6 @@ server_thread.join(timeout=1)
assert len(pkts) == 2

= Test DoIPSocket 3
~ automotive_comm

server_up = threading.Event()
def server():
Expand Down Expand Up @@ -484,7 +482,6 @@ assert len(pkts) == 2


= Test DoIPSocket6
~ automotive_comm

server_up = threading.Event()
def server():
Expand Down Expand Up @@ -513,7 +510,6 @@ server_thread.join(timeout=1)
assert len(pkts) == 2

= Test DoIPSslSocket
~ automotive_comm

certstring = """
LS0tLS1CRUdJTiBQUklWQVRFIEtFWS0tLS0tCk1JSUV2QUlCQURBTkJna3Foa2lHOXcwQkFRRUZB
Expand Down Expand Up @@ -616,7 +612,6 @@ server_thread.join(timeout=1)
assert len(pkts) == 2

= Test DoIPSslSocket6
~ automotive_comm

server_up = threading.Event()
def server():
Expand Down Expand Up @@ -653,7 +648,6 @@ server_thread.join(timeout=1)
assert len(pkts) == 2

= Test UDS_DoIPSslSocket6
~ automotive_comm

server_up = threading.Event()
def server():
Expand Down Expand Up @@ -690,7 +684,6 @@ server_thread.join(timeout=1)
assert len(pkts) == 2

= Test UDS_DualDoIPSslSocket6
~ automotive_comm

server_tcp_up = threading.Event()
server_tls_up = threading.Event()
Expand Down

0 comments on commit 9dcee45

Please sign in to comment.