diff options
-rw-r--r-- | llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg | 2 | ||||
-rw-r--r-- | llvm/utils/lit/tests/progress-bar.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg b/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg index 7f31129ad11..17488a26e4f 100644 --- a/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg +++ b/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg @@ -1,5 +1,5 @@ import lit.formats -config.name = 'shtest-shell' +config.name = 'progress-bar' config.suffixes = ['.txt'] config.test_format = lit.formats.ShTest() config.test_source_root = None diff --git a/llvm/utils/lit/tests/progress-bar.py b/llvm/utils/lit/tests/progress-bar.py index d0467485082..e9429d907ca 100644 --- a/llvm/utils/lit/tests/progress-bar.py +++ b/llvm/utils/lit/tests/progress-bar.py @@ -4,10 +4,10 @@ # RUN: FileCheck < %t.out %s # # CHECK: Testing: 0 .. 10.. 20 -# CHECK: FAIL: shtest-shell :: test-1.txt (1 of 4) +# CHECK: FAIL: progress-bar :: test-1.txt (1 of 4) # CHECK: Testing: 0 .. 10.. 20.. 30.. 40.. -# CHECK: FAIL: shtest-shell :: test-2.txt (2 of 4) +# CHECK: FAIL: progress-bar :: test-2.txt (2 of 4) # CHECK: Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70 -# CHECK: FAIL: shtest-shell :: test-3.txt (3 of 4) +# CHECK: FAIL: progress-bar :: test-3.txt (3 of 4) # CHECK: Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90.. -# CHECK: FAIL: shtest-shell :: test-4.txt (4 of 4) +# CHECK: FAIL: progress-bar :: test-4.txt (4 of 4) |