1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Further fix to llvm-cov test.

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
This commit is contained in:
Daniel Jasper 2013-12-03 08:21:14 +00:00
parent 531677d105
commit 623166a4f9

View File

@ -1,6 +1,10 @@
# "cd" and globbing are unsupported in lit internal runner.
REQUIRES: shell REQUIRES: shell
RUN: rm -f test.* RUN: rm -rf %t
RUN: mkdir %t
RUN: cd %t
RUN: cp %p/Inputs/test.* . RUN: cp %p/Inputs/test.* .
RUN: llvm-cov -gcno=test.gcno -gcda=test.gcda RUN: llvm-cov -gcno=test.gcno -gcda=test.gcda
RUN: diff -aub test.cpp.gcov test.cpp.llcov RUN: diff -aub test.cpp.gcov test.cpp.llcov
RUN: rm test.cpp.llcov RUN: rm test.cpp.llcov