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