forked from OSchip/llvm-project
11 lines
381 B
Plaintext
11 lines
381 B
Plaintext
RUN: mkdir -p %t.d
|
|
RUN: cd %t.d
|
|
|
|
RUN: %clang --coverage -o %t %S/../Inputs/instrprof-gcov-execvp.c
|
|
RUN: test -f instrprof-gcov-execvp.gcno
|
|
|
|
RUN: rm -f instrprof-gcov-execvp.gcda
|
|
RUN: %run %t
|
|
RUN: llvm-cov gcov -b -c instrprof-gcov-execvp.gcda
|
|
RUN: FileCheck --match-full-lines --strict-whitespace --input-file instrprof-gcov-execvp.c.gcov %S/../Inputs/instrprof-gcov-execvp.c.gcov
|