AMDGPU: Mark test as XFAIL in expensive_checks builds
[llvm-project.git] / llvm / utils / lit / tests / show-result-codes.py
blob5d8cd0d9eb9fa28a8de52fa7fa0b47e4b10b5530
1 # Test the --show-<result-code> {pass,unsupported,xfail,...} options.
3 # RUN: not %{lit} %{inputs}/show-result-codes | FileCheck %s --check-prefix=NONE
4 # RUN: not %{lit} %{inputs}/show-result-codes --show-unsupported | FileCheck %s --check-prefix=ONE
5 # RUN: not %{lit} %{inputs}/show-result-codes --show-pass --show-xfail | FileCheck %s --check-prefix=MULTIPLE
7 # Failing tests are always shown
8 # NONE-NOT: Unsupported Tests (1)
9 # NONE-NOT: Passed Tests (1)
10 # NONE-NOT: Expectedly Failed Tests (1)
11 # NONE: Failed Tests (1)
13 # ONE: Unsupported Tests (1)
14 # ONE-NOT: Passed Tests (1)
15 # ONE-NOT: Expectedly Failed Tests (1)
16 # ONE: Failed Tests (1)
18 # MULTIPLE-NOT: Unsupported Tests (1)
19 # MULTIPLE: Passed Tests (1)
20 # MULTIPLE: Expectedly Failed Tests (1)
21 # MULTIPLE: Failed Tests (1)