2018-07-10 22:12:03 +08:00
|
|
|
RUN: mkdir -p %t.d
|
|
|
|
RUN: cd %t.d
|
|
|
|
|
|
|
|
RUN: %clang --coverage -o instrprof-shared-lib.o -c %S/Inputs/instrprof-shared-lib.c
|
|
|
|
RUN: test -f instrprof-shared-lib.gcno
|
|
|
|
|
|
|
|
RUN: %clang --coverage -o instrprof-shared-main.o -c %S/Inputs/instrprof-shared-main.c
|
|
|
|
RUN: test -f instrprof-shared-main.gcno
|
|
|
|
|
|
|
|
RUN: %clang --coverage -o %t instrprof-shared-main.o instrprof-shared-lib.o
|
|
|
|
RUN: test -f %t
|
|
|
|
|
2018-09-25 19:12:15 +08:00
|
|
|
RUN: rm -f instrprof-shared-main.gcda instrprof-shared-lib.gcda
|
2018-07-10 22:12:03 +08:00
|
|
|
RUN: %run %t
|
|
|
|
RUN: llvm-cov gcov instrprof-shared-main.gcda
|
|
|
|
RUN: FileCheck --match-full-lines --strict-whitespace --input-file instrprof-shared-main.c.gcov %S/Inputs/instrprof-shared-main.c.gcov
|
|
|
|
RUN: llvm-cov gcov instrprof-shared-lib.gcda
|
|
|
|
RUN: FileCheck --match-full-lines --strict-whitespace --input-file instrprof-shared-lib.c.gcov %S/Inputs/instrprof-shared-lib_in-loop.c.gcov
|