diff options
author | Julian Lettner <jlettner@apple.com> | 2019-10-09 18:23:30 +0000 |
---|---|---|
committer | Julian Lettner <jlettner@apple.com> | 2019-10-09 18:23:30 +0000 |
commit | 72c7c21dda99bf2a388255ea167914771704a6f9 (patch) | |
tree | e096560f36a83941c263c8950771895624318285 /llvm/utils/lit/tests | |
parent | 70aa6fb6e301c40c5d0c88ee56f275e3a183b575 (diff) | |
download | bcm5719-llvm-72c7c21dda99bf2a388255ea167914771704a6f9.tar.gz bcm5719-llvm-72c7c21dda99bf2a388255ea167914771704a6f9.zip |
[lit] Refactor ProgressDisplay
Move progress display to separate file. Simplify some code paths.
Decouple from other components via progress callback. Remove unused
`_Display` class.
Reviewed By: serge-sans-paille
Differential Revision: https://reviews.llvm.org/D68525
llvm-svn: 374194
Diffstat (limited to 'llvm/utils/lit/tests')
-rw-r--r-- | llvm/utils/lit/tests/progress-bar.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/utils/lit/tests/progress-bar.py b/llvm/utils/lit/tests/progress-bar.py index e9429d907ca..ceeca68712b 100644 --- a/llvm/utils/lit/tests/progress-bar.py +++ b/llvm/utils/lit/tests/progress-bar.py @@ -3,11 +3,12 @@ # RUN: not %{lit} -j 1 -s %{inputs}/progress-bar > %t.out # RUN: FileCheck < %t.out %s # -# CHECK: Testing: 0 .. 10.. 20 +# CHECK: Testing: # CHECK: FAIL: progress-bar :: test-1.txt (1 of 4) -# CHECK: Testing: 0 .. 10.. 20.. 30.. 40.. +# CHECK: Testing: 0.. 10.. 20 # CHECK: FAIL: progress-bar :: test-2.txt (2 of 4) -# CHECK: Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70 +# CHECK: Testing: 0.. 10.. 20.. 30.. 40.. # CHECK: FAIL: progress-bar :: test-3.txt (3 of 4) -# CHECK: Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.. +# CHECK: Testing: 0.. 10.. 20.. 30.. 40.. 50.. 60.. 70 # CHECK: FAIL: progress-bar :: test-4.txt (4 of 4) +# CHECK: Testing: 0.. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.. |