]> git.proxmox.com Git - llvm-toolchain.git/blame - debian/patches/test-keep-alive.diff
Merge tag 'debian/11.0.0-5' into proxmox/buster
[llvm-toolchain.git] / debian / patches / test-keep-alive.diff
CommitLineData
7d9dbbad 1Index: llvm-toolchain-snapshot_11~++20200326111000+4673699a470/llvm/utils/lit/lit/ProgressBar.py
1c3a69fc 2===================================================================
7d9dbbad
SL
3--- llvm-toolchain-snapshot_11~++20200326111000+4673699a470.orig/llvm/utils/lit/lit/ProgressBar.py
4+++ llvm-toolchain-snapshot_11~++20200326111000+4673699a470/llvm/utils/lit/lit/ProgressBar.py
1c3a69fc
SL
5@@ -189,15 +189,7 @@ class SimpleProgressBar:
6 return
7
8 for i in range(self.atIndex, next):
9- idx = i % 5
10- if idx == 0:
296b9e76 11- sys.stdout.write('%2d' % (i*2))
1c3a69fc
SL
12- elif idx == 1:
13- pass # Skip second char
14- elif idx < 4:
15- sys.stdout.write('.')
16- else:
17- sys.stdout.write(' ')
18+ sys.stdout.write('%-2d ' % (i*2))
19 sys.stdout.flush()
20 self.atIndex = next
21