mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
b1a23c9951
The function checksums are hashed from the concatenation of the function name and line number. llvm-svn: 196358
19 lines
488 B
Plaintext
19 lines
488 B
Plaintext
# "cd" and globbing are unsupported in lit internal runner.
|
|
REQUIRES: shell
|
|
RUN: rm -rf %t
|
|
RUN: mkdir %t
|
|
RUN: cd %t
|
|
RUN: cp %p/Inputs/test* .
|
|
|
|
RUN: llvm-cov -gcno=test.gcno -gcda=test.gcda
|
|
RUN: diff -aub test.cpp.gcov test.cpp.llcov
|
|
RUN: rm test.cpp.llcov
|
|
|
|
RUN: not llvm-cov -gcno=test_read_fail.gcno -gcda=test.gcda
|
|
|
|
RUN: not llvm-cov -gcno=test.gcno -gcda=test_file_checksum_fail.gcda
|
|
|
|
RUN: not llvm-cov -gcno=test.gcno -gcda=test_func_checksum_fail.gcda
|
|
|
|
XFAIL: powerpc64, s390x, mips
|