1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/tools/llvm-profdata/cutoff.test
Georgii Rymar 463ae4125d [tools][tests] - Use --check-prefixes instead of multiple --check-prefix. NFCI.
There is no need to use `--check-prefix` multiple times.
It helps to improve readability/test maintainability.
This patch does it for all tools at once.

Differential revision: https://reviews.llvm.org/D78217
2020-04-17 12:35:25 +03:00

24 lines
1.5 KiB
Plaintext

Basic tests for cutoff options in show command.
RUN: llvm-profdata show -value-cutoff=1 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1,CHECK
RUN: llvm-profdata show -value-cutoff=1000 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1000,CHECK
RUN: llvm-profdata show -all-functions -value-cutoff=1 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1FUNC,CUTOFF1,CHECK
RUN: llvm-profdata show -all-functions -value-cutoff=1000 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1000FUNC,CUTOFF1000,CHECK
RUN: llvm-profdata show -value-cutoff=1 -list-below-cutoff %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=BELOW1,CUTOFF1,CHECK
RUN: llvm-profdata show -value-cutoff=1000 -list-below-cutoff %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=BELOW1000,CUTOFF1000,CHECK
CUTOFF1FUNC-NOT: bar
CUTOFF1FUNC: Functions shown: 2
CUTOFF1000FUNC-NOT: bar
CUTOFF1000FUNC-NOT: foo
CUTOFF1000FUNC: Functions shown: 1
BELOW1: The list of functions with the maximum counter less than 1:
BELOW1: bar: (Max = 0 Sum = 0)
BELOW1000:The list of functions with the maximum counter less than 1000:
BELOW1000: bar: (Max = 0 Sum = 0)
BELOW1000: foo: (Max = 999 Sum = 1000)
CHECK: Total functions: 3
CUTOFF1: Number of functions with maximum count (< 1): 1
CUTOFF1: Number of functions with maximum count (>= 1): 2
CUTOFF1000: Number of functions with maximum count (< 1000): 2
CUTOFF1000: Number of functions with maximum count (>= 1000): 1