diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2014-06-18 15:52:18 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2014-06-18 15:52:18 +0000 |
commit | dbb3e3e64f40098a74e1d337cfbc1212959fe832 (patch) | |
tree | caf589e407ebd72872f5dcdfb0a7df299454ad90 /llvm/test/tools/llvm-cov/llvm-cov.test | |
parent | 7c3f0dc7e4e4e31f636b846bcc31cf442d9a7df5 (diff) | |
download | bcm5719-llvm-dbb3e3e64f40098a74e1d337cfbc1212959fe832.tar.gz bcm5719-llvm-dbb3e3e64f40098a74e1d337cfbc1212959fe832.zip |
Do not XFAIL test/tools/llvm-cov tests on powerpc64le
All tests in test/tools/llvm-cov fail on big-endian targets and are
supposed to be XFAILed there. However, including "powerpc64" in the
XFAIL line is now incorrect, since that matches both powerpc64- and
powerpc64le- targets, and the tests pass on the latter.
Update the XFAIL lines to use powerpc64- instead (like mips64-).
llvm-svn: 211172
Diffstat (limited to 'llvm/test/tools/llvm-cov/llvm-cov.test')
-rw-r--r-- | llvm/test/tools/llvm-cov/llvm-cov.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/tools/llvm-cov/llvm-cov.test b/llvm/test/tools/llvm-cov/llvm-cov.test index 2345f8d51e8..82d1273ae61 100644 --- a/llvm/test/tools/llvm-cov/llvm-cov.test +++ b/llvm/test/tools/llvm-cov/llvm-cov.test @@ -110,4 +110,4 @@ RUN: not llvm-cov test.c -gcda=test_file_checksum_fail.gcda # Bad function checksum on gcda RUN: not llvm-cov test.c -gcda=test_func_checksum_fail.gcda -XFAIL: powerpc64, s390x, mips-, mips64-, sparc +XFAIL: powerpc64-, s390x, mips-, mips64-, sparc |