We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac6b276 commit 8e3be48Copy full SHA for 8e3be48
lldb/test/API/driver/stdio_closed/TestDriverWithClosedSTDIO.py
@@ -12,14 +12,17 @@
12
13
import lldbsuite.test.lldbutil as lldbutil
14
from lldbsuite.test.lldbtest import *
15
-
+from lldbsuite.test.decorators import *
16
17
class TestDriverWithClosedSTDIO(TestBase):
18
# If your test case doesn't stress debug info, then
19
# set this to true. That way it won't be run once for
20
# each debug info format.
21
NO_DEBUG_INFO_TESTCASE = True
22
23
+ # Windows doesn't have the fcntl module, so we can't run this
24
+ # test there.
25
+ @skipIf(oslist=["windows"])
26
def test_run_lldb_and_wait(self):
27
"""This test forks, closes the stdio channels and exec's lldb.
28
Then it waits for it to exit and asserts it did that successfully"""
0 commit comments