Home | History | Annotate | Download | only in llvm-profdata
      1 Basic tests for testing text dump functions.
      2 
      3 RUN: llvm-profdata show --all-functions -counts --text %p/Inputs/basic.proftext > %t-basic.proftext1
      4 RUN: llvm-profdata merge -o %t-basic.proftext2 --text  %p/Inputs/basic.proftext
      5 
      6 RUN: llvm-profdata merge -binary -o %t-basic.profdata1 %t-basic.proftext1
      7 RUN: llvm-profdata merge -o %t-basic.profdata2 %t-basic.proftext2
      8 
      9 RUN: llvm-profdata show --all-functions -counts  %t-basic.profdata1 > %t-basic.dump3
     10 RUN: llvm-profdata show --all-functions -counts  %t-basic.profdata2 > %t-basic.dump4
     11 
     12 RUN: llvm-profdata merge -text -o %t-basic.proftext5 %t-basic.profdata1
     13 RUN: llvm-profdata merge -text -o %t-basic.proftext6 %t-basic.profdata2
     14 
     15 RUN: diff %t-basic.dump3 %t-basic.dump4
     16 RUN: diff %t-basic.proftext5 %t-basic.proftext6
     17 
     18 RUN: not llvm-profdata merge -gcc -o %t-basic-profdata3 %t-basic.proftext2 2>&1 | FileCheck %s --check-prefix=UNKNOWN
     19 UNKNOWN: Unknown
     20 
     21 
     22