[Lldb-commits] [lldb] 21f142c - [lldb] temporary commit to see why a test is failing only on lldb-aarch64-ubuntu
Luboš Luňák via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 5 02:55:01 PDT 2020
Author: Luboš Luňák
Date: 2020-08-05T11:54:14+02:00
New Revision: 21f142ce1df10fe6cf5721e263fc6e91aea93938
URL: https://github.com/llvm/llvm-project/commit/21f142ce1df10fe6cf5721e263fc6e91aea93938
DIFF: https://github.com/llvm/llvm-project/commit/21f142ce1df10fe6cf5721e263fc6e91aea93938.diff
LOG: [lldb] temporary commit to see why a test is failing only on lldb-aarch64-ubuntu
Added:
Modified:
lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py
Removed:
################################################################################
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 @@ def __str__(self):
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))
More information about the lldb-commits
mailing list