forked from OSchip/llvm-project
[lldb] Temporarily bump the max length of the pexpect error message to diagnose an lldb-aarch64 test failure
This is only temporarily to gather some logs before this gets reverted. See D106873 for a discussion about how/if we can make this change permanent.
This commit is contained in:
parent
6a7a2ee816
commit
5db8e23212
|
@ -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 10000 chars): %r' % self.buffer[-10000:])
|
||||
s.append('before (last 10000 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))
|
||||
|
|
Loading…
Reference in New Issue