This is an ongoing series of commits that are reformatting our Python code. Reformatting is done with `black` (23.1.0). If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run `git checkout --ours <yourfile>` and then reformat it with black. RFC: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Differential revision: https://reviews.llvm.org/D151460
30 lines
840 B
Python
30 lines
840 B
Python
import lldb
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test.lldbpexpect import PExpectTest
|
|
|
|
|
|
class TestIOHandlerProcessSTDIO(PExpectTest):
|
|
NO_DEBUG_INFO_TESTCASE = True
|
|
|
|
# PExpect uses many timeouts internally and doesn't play well
|
|
# under ASAN on a loaded machine..
|
|
@skipIfAsan
|
|
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
|
|
def test(self):
|
|
self.build()
|
|
self.launch(executable=self.getBuildArtifact("a.out"))
|
|
self.child.sendline("run")
|
|
|
|
self.child.send("foo\n")
|
|
self.child.expect_exact("stdout: foo")
|
|
|
|
self.child.send("bar\n")
|
|
self.child.expect_exact("stdout: bar")
|
|
|
|
self.child.send("baz\n")
|
|
self.child.expect_exact("stdout: baz")
|
|
|
|
self.child.sendcontrol("d")
|
|
self.quit()
|