diff options
| author | Luboš Luňák <l.lunak@centrum.cz> | 2020-08-05 11:54:14 +0200 |
|---|---|---|
| committer | Luboš Luňák <l.lunak@centrum.cz> | 2020-08-05 11:54:14 +0200 |
| commit | 21f142ce1df10fe6cf5721e263fc6e91aea93938 (patch) | |
| tree | d987786f34234e27f87acc72a459d7d26f1999da /lldb/third_party/Python/module | |
| parent | 4cd923784e9079384792e0aed38d56809d6a4f9a (diff) | |
| download | llvm-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.py | 4 |
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)) |
