summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2019-09-05 14:51:23 +0000
committerRaphael Isemann <teemperor@gmail.com>2019-09-05 14:51:23 +0000
commit167730196976950144eea7d3cd0ae2bb918e480f (patch)
tree6980bbfca16413e21c5a35a9d38b2abcf6151ac4 /lldb/packages/Python/lldbsuite/test
parent30424e4268e20953ac47d25d5a3ebc0895752cee (diff)
downloadbcm5719-llvm-167730196976950144eea7d3cd0ae2bb918e480f.tar.gz
bcm5719-llvm-167730196976950144eea7d3cd0ae2bb918e480f.zip
[lldb][NFC] Add dimensions to pexpect tests failing on sanitizer bot
I'm still unable to reproduce this locally, so let's see if this is enough to make the bots happy. The missing dimension parameter seems to be the biggest difference between these tests and TestIOHandlerCompletion.py which runs just fine on the same bot, so that's the motivation for trying this out. llvm-svn: 371077
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r--lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py2
-rw-r--r--lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py b/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
index 7447e158641..b96eba74db8 100644
--- a/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
+++ b/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
@@ -15,7 +15,7 @@ class MultilineCompletionTest(PExpectTest):
"""Test that we can complete a simple multiline expression"""
self.build()
- self.launch(executable=self.getBuildArtifact("a.out"))
+ self.launch(executable=self.getBuildArtifact("a.out"), dimensions=(100,500))
self.expect("b main", substrs=["Breakpoint 1", "address ="])
self.expect("run", substrs=["stop reason ="])
diff --git a/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py b/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
index 15c60de9001..831195f6722 100644
--- a/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
+++ b/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
@@ -15,7 +15,7 @@ class BasicGuiCommandTest(PExpectTest):
def test_gui(self):
self.build()
- self.launch(executable=self.getBuildArtifact("a.out"))
+ self.launch(executable=self.getBuildArtifact("a.out"), dimensions=(100,500))
self.expect('br set -f main.c -p "// Break here"', substrs=["Breakpoint 1", "address ="])
self.expect("run", substrs=["stop reason ="])
OpenPOWER on IntegriCloud