1RUN: mkdir -p %t.d
2RUN: cd %t.d
3
4RUN: %clang --coverage -o %t %S/Inputs/instrprof-gcov-one-line-function.c
5RUN: test -f instrprof-gcov-one-line-function.gcno
6RUN: rm -f instrprof-gcov-one-line-function.gcda
7RUN: %run %t
8RUN: llvm-cov gcov instrprof-gcov-one-line-function.gcda
9RUN: FileCheck --match-full-lines --strict-whitespace --input-file instrprof-gcov-one-line-function.c.gcov %S/Inputs/instrprof-gcov-one-line-function.c.gcov
10