Author: Luboš Luňák
Date: 2020-08-05T11:54:14+02:00
New Revision: 21f142ce1df10fe6cf5721e263fc6e91aea93938

URL: 
https://github.com/llvm/llvm-project/commit/21f142ce1df10fe6cf5721e263fc6e91aea93938
DIFF: 
https://github.com/llvm/llvm-project/commit/21f142ce1df10fe6cf5721e263fc6e91aea93938.diff

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

Added: 
    

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

Removed: 
    


################################################################################
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 6b9ad3f63f7c..ca651659b461 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 @@ def __str__(self):
         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 100 chars): %r' % self.buffer[-10000:])
+        s.append('before (last 100 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))


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to