aboutsummaryrefslogtreecommitdiff
path: root/lldb/third_party/Python/module
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@centrum.cz>2020-08-05 11:54:14 +0200
committerLuboš Luňák <l.lunak@centrum.cz>2020-08-05 11:54:14 +0200
commit21f142ce1df10fe6cf5721e263fc6e91aea93938 (patch)
treed987786f34234e27f87acc72a459d7d26f1999da /lldb/third_party/Python/module
parent4cd923784e9079384792e0aed38d56809d6a4f9a (diff)
downloadllvm-21f142ce1df10fe6cf5721e263fc6e91aea93938.tar.gz
llvm-21f142ce1df10fe6cf5721e263fc6e91aea93938.tar.bz2
llvm-21f142ce1df10fe6cf5721e263fc6e91aea93938.zip
[lldb] temporary commit to see why a test is failing only on lldb-aarch64-ubuntu
Diffstat (limited to 'lldb/third_party/Python/module')
-rw-r--r--lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py b/lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py
index 6b9ad3f63f7c..ca651659b461 100644
--- a/lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py
+++ b/lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py
@@ -212,8 +212,8 @@ class spawn(SpawnBase):
s.append(repr(self))
s.append('command: ' + str(self.command))
s.append('args: %r' % (self.args,))
- s.append('buffer (last 100 chars): %r' % self.buffer[-100:])
- s.append('before (last 100 chars): %r' % self.before[-100:] if self.before else '')
+ s.append('buffer (last 100 chars): %r' % self.buffer[-10000:])
+ s.append('before (last 100 chars): %r' % self.before[-10000:] if self.before else '')
s.append('after: %r' % (self.after,))
s.append('match: %r' % (self.match,))
s.append('match_index: ' + str(self.match_index))