mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
623166a4f9
It turns out that in some build systems, tests are executed in a non-writable directory. Hopefully, this finally fixes the issue. llvm-svn: 196256
17 lines
418 B
Plaintext
17 lines
418 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_checksum_mismatch.gcda
|
|
|
|
XFAIL: powerpc64, s390x, mips
|