Revert "[lldb] Temporarily bump the max length of the pexpect error message to diagnose an lldb-aarch64 test failure"

This reverts commit 5db8e23212. The test has
been disabled since then on the bot and we got the logs we wanted.
This commit is contained in:
Raphael Isemann 2021-07-28 17:49:40 +02:00
parent 3106f85945
commit 83c752bfa6
1 changed files with 2 additions and 2 deletions

View File

@ -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 10000 chars): %r' % self.buffer[-10000:])
s.append('before (last 10000 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))