Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@

import lldbsuite.test.lldbutil as lldbutil
from lldbsuite.test.lldbtest import *

from lldbsuite.test.decorators import *

class TestDriverWithClosedSTDIO(TestBase):
# If your test case doesn't stress debug info, then
# set this to true. That way it won't be run once for
# each debug info format.
NO_DEBUG_INFO_TESTCASE = True

# Windows doesn't have the fcntl module, so we can't run this
# test there.
@skipIf(oslist=["windows"])
def test_run_lldb_and_wait(self):
"""This test forks, closes the stdio channels and exec's lldb.
Then it waits for it to exit and asserts it did that successfully"""
Expand Down
Loading