1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/utils/lit/tests/show-result-codes.py
Julian Lettner 3751a648ec [lit] Add --show-xxx command line options
Provide `--show-xxx` flags for all non-failure result codes, just as we
already do for `--show-xfail` and `--show-unsupported`.

Reviewed By: jdenny

Differential Revision: https://reviews.llvm.org/D82233
2020-07-08 17:01:05 -07:00

22 lines
847 B
Python

# Test the --show-<result-code> {pass,unsupported,xfail,...} options.
#
# RUN: not %{lit} %{inputs}/show-result-codes | FileCheck %s --check-prefix=NONE
# RUN: not %{lit} %{inputs}/show-result-codes --show-unsupported | FileCheck %s --check-prefix=ONE
# RUN: not %{lit} %{inputs}/show-result-codes --show-pass --show-xfail | FileCheck %s --check-prefix=MULTIPLE
# Failing tests are always shown
# NONE-NOT: Unsupported Tests (1)
# NONE-NOT: Passed Tests (1)
# NONE-NOT: Expectedly Failed Tests (1)
# NONE: Failed Tests (1)
# ONE: Unsupported Tests (1)
# ONE-NOT: Passed Tests (1)
# ONE-NOT: Expectedly Failed Tests (1)
# ONE: Failed Tests (1)
# MULTIPLE-NOT: Unsupported Tests (1)
# MULTIPLE: Passed Tests (1)
# MULTIPLE: Expectedly Failed Tests (1)
# MULTIPLE: Failed Tests (1)