diff options
| author | Luboš Luňák <l.lunak@centrum.cz> | 2020-08-05 11:55:02 +0200 |
|---|---|---|
| committer | Luboš Luňák <l.lunak@centrum.cz> | 2020-08-05 11:55:02 +0200 |
| commit | 138281904ba029bc49fca34a8658a8fcd1b843aa (patch) | |
| tree | de9684b72c7095c51f6313b98bbb141fb9af6cf7 /lldb/third_party/Python/module | |
| parent | 21f142ce1df10fe6cf5721e263fc6e91aea93938 (diff) | |
| download | llvm-138281904ba029bc49fca34a8658a8fcd1b843aa.tar.gz llvm-138281904ba029bc49fca34a8658a8fcd1b843aa.tar.bz2 llvm-138281904ba029bc49fca34a8658a8fcd1b843aa.zip | |
Revert "[lldb] temporary commit to see why a test is failing only on lldb-aarch64-ubuntu"
This reverts commit 21f142ce1df10fe6cf5721e263fc6e91aea93938.
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 ca651659b461..6b9ad3f63f7c 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[-10000:]) - s.append('before (last 100 chars): %r' % self.before[-10000:] if self.before else '') + 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('after: %r' % (self.after,)) s.append('match: %r' % (self.match,)) s.append('match_index: ' + str(self.match_index)) |
