mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +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
10 lines
234 B
Python
10 lines
234 B
Python
# UNSUPPORTED: system-windows
|
|
|
|
# Test overall lit timeout (--max-time).
|
|
#
|
|
# RUN: %{lit} %{inputs}/max-time --max-time=5 2>&1 | FileCheck %s
|
|
|
|
# CHECK: reached timeout, skipping remaining tests
|
|
# CHECK: Skipped: 1
|
|
# CHECK: Passed : 1
|