Skip to content

Commit

Permalink
[lldb][Windows] Fixed tests TestPty and TestPtyServer (llvm#92090)
Browse files Browse the repository at this point in the history
The tests TestPty and TestPtyServer use the Unix specific python builtin
module termios. They are failed in case of Windows host and Linux
target. Disable them for Windows host too.
  • Loading branch information
slydiman authored May 15, 2024
1 parent 7621a0d commit eacefba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lldb/test/API/functionalities/gdb_remote_client/TestPty.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from lldbsuite.test.lldbgdbclient import GDBRemoteTestBase


@skipIfWindows
@skipIf(hostoslist=["windows"])
class TestPty(GDBRemoteTestBase):
server_socket_class = PtyServerSocket

Expand Down
2 changes: 1 addition & 1 deletion lldb/test/API/tools/lldb-server/TestPtyServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import xml.etree.ElementTree as ET


@skipIfWindows
@skipIf(hostoslist=["windows"])
class PtyServerTestCase(gdbremote_testcase.GdbRemoteTestCaseBase):
def setUp(self):
super().setUp()
Expand Down

0 comments on commit eacefba

Please sign in to comment.