mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
e56242dfcc
Improve consistency when printing test results: Previously we were using different labels for group names (the header for the list of, e.g., failing tests) and summary count lines. For example, "Failing Tests"/"Unexpected Failures". This commit changes lit to label things consistently. Improve wording of labels: When talking about individual test results, the first word in "Unexpected Failures", "Expected Passes", and "Individual Timeouts" is superfluous. Some labels contain the word "Tests" and some don't. Let's simplify the names. Before: ``` Failing Tests (1): ... Expected Passes : 3 Unexpected Failures: 1 ``` After: ``` Failed Tests (1): ... Passed: 3 Failed: 1 ``` Reviewed By: ldionne Differential Revision: https://reviews.llvm.org/D77708
25 lines
828 B
Python
25 lines
828 B
Python
# UNSUPPORTED: system-windows
|
|
|
|
# Check the behavior of --max-failures option.
|
|
#
|
|
# RUN: not %{lit} -j 1 %{inputs}/max-failures > %t.out 2>&1
|
|
# RUN: not %{lit} --max-failures=1 -j 1 %{inputs}/max-failures >> %t.out 2>&1
|
|
# RUN: not %{lit} --max-failures=2 -j 1 %{inputs}/max-failures >> %t.out 2>&1
|
|
# RUN: not %{lit} --max-failures=0 -j 1 %{inputs}/max-failures 2>> %t.out
|
|
# RUN: FileCheck < %t.out %s
|
|
#
|
|
|
|
# CHECK-NOT: reached maximum number of test failures
|
|
# CHECK-NOT: Skipped
|
|
# CHECK: Failed: 3
|
|
|
|
# CHECK: reached maximum number of test failures, skipping remaining tests
|
|
# CHECK: Skipped: 2
|
|
# CHECK: Failed : 1
|
|
|
|
# CHECK: reached maximum number of test failures, skipping remaining tests
|
|
# CHECK: Skipped: 1
|
|
# CHECK: Failed : 2
|
|
|
|
# CHECK: error: argument --max-failures: requires positive integer, but found '0'
|