Revert "[lldb] temporary commit to see why a test is failing only on lldb-aarch64...
authorLuboš Luňák <l.lunak@centrum.cz>
Wed, 5 Aug 2020 09:55:02 +0000 (11:55 +0200)
committerLuboš Luňák <l.lunak@centrum.cz>
Wed, 5 Aug 2020 09:55:02 +0000 (11:55 +0200)
This reverts commit 21f142ce1df10fe6cf5721e263fc6e91aea93938.

lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py

index ca65165..6b9ad3f 100644 (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))