1 Basic tests for cutoff options in show command.
3 RUN: llvm-profdata show -value-cutoff=1 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1,CHECK
4 RUN: llvm-profdata show -value-cutoff=1000 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1000,CHECK
5 RUN: llvm-profdata show -all-functions -value-cutoff=1 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1FUNC,CUTOFF1,CHECK
6 RUN: llvm-profdata show -all-functions -value-cutoff=1000 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1000FUNC,CUTOFF1000,CHECK
7 RUN: llvm-profdata show -value-cutoff=1 -list-below-cutoff %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=BELOW1,CUTOFF1,CHECK
8 RUN: llvm-profdata show -value-cutoff=1000 -list-below-cutoff %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=BELOW1000,CUTOFF1000,CHECK
10 CUTOFF1FUNC: Functions shown: 2
11 CUTOFF1000FUNC-NOT: bar
12 CUTOFF1000FUNC-NOT: foo
13 CUTOFF1000FUNC: Functions shown: 1
14 BELOW1: The list of functions with the maximum counter less than 1:
15 BELOW1: bar: (Max = 0 Sum = 0)
16 BELOW1000:The list of functions with the maximum counter less than 1000:
17 BELOW1000: bar: (Max = 0 Sum = 0)
18 BELOW1000: foo: (Max = 999 Sum = 1000)
19 CHECK: Total functions: 3
20 CUTOFF1: Number of functions with maximum count (< 1): 1
21 CUTOFF1: Number of functions with maximum count (>= 1): 2
22 CUTOFF1000: Number of functions with maximum count (< 1000): 2
23 CUTOFF1000: Number of functions with maximum count (>= 1000): 1