mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-11-02 20:06:37 +00:00
add missing patch
This commit is contained in:
parent
a2c190d780
commit
9e711d0143
21
debian/patches/test-keep-alive.diff
vendored
Normal file
21
debian/patches/test-keep-alive.diff
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
Index: llvm-toolchain-5.0-5.0.1~+rc1/utils/lit/lit/ProgressBar.py
|
||||
===================================================================
|
||||
--- llvm-toolchain-5.0-5.0.1~+rc1.orig/utils/lit/lit/ProgressBar.py
|
||||
+++ llvm-toolchain-5.0-5.0.1~+rc1/utils/lit/lit/ProgressBar.py
|
||||
@@ -189,15 +189,7 @@ class SimpleProgressBar:
|
||||
return
|
||||
|
||||
for i in range(self.atIndex, next):
|
||||
- idx = i % 5
|
||||
- if idx == 0:
|
||||
- sys.stdout.write('%-2d' % (i*2))
|
||||
- elif idx == 1:
|
||||
- pass # Skip second char
|
||||
- elif idx < 4:
|
||||
- sys.stdout.write('.')
|
||||
- else:
|
||||
- sys.stdout.write(' ')
|
||||
+ sys.stdout.write('%-2d ' % (i*2))
|
||||
sys.stdout.flush()
|
||||
self.atIndex = next
|
||||
|
||||
Loading…
Reference in New Issue
Block a user