Revert "[lldb] temporary commit to see why a test is failing only on lldb-aarch64-ubuntu"

This reverts commit 21f142ce1d.
This commit is contained in:
Luboš Luňák 2020-08-05 11:55:02 +02:00
parent 21f142ce1d
commit 138281904b

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 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))