[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / compiler-rt / test / profile / instrprof-gcov-exceptions.test
bloba3dcc55aaf5b6475c578655dfc283b412de692b7
1 RUN: mkdir -p %t.d
2 RUN: cd %t.d
4 # Test with exceptions disabled.
5 RUN: %clangxx --coverage -o %t %S/Inputs/instrprof-gcov-exceptions.cpp -fno-exceptions
6 RUN: test -f instrprof-gcov-exceptions.gcno
8 RUN: rm -f instrprof-gcov-exceptions.gcda
9 RUN: %run %t
10 RUN: llvm-cov gcov instrprof-gcov-exceptions.gcda
11 RUN: FileCheck --match-full-lines --strict-whitespace --input-file instrprof-gcov-exceptions.cpp.gcov %S/Inputs/instrprof-gcov-exceptions.cpp.gcov
13 # Test with exceptions enabled, the result in terms of line counts should be the same.
14 RUN: %clangxx --coverage -o %t %S/Inputs/instrprof-gcov-exceptions.cpp
15 RUN: test -f instrprof-gcov-exceptions.gcno
17 RUN: rm -f instrprof-gcov-exceptions.gcda
18 RUN: %run %t
19 RUN: llvm-cov gcov instrprof-gcov-exceptions.gcda
20 # FIXME: The result should be the same, but they are not on some platforms.
21 RUNX: FileCheck --match-full-lines --strict-whitespace --input-file instrprof-gcov-exceptions.cpp.gcov %S/Inputs/instrprof-gcov-exceptions.cpp.gcov