diff options
author | Mike Aizatsky <aizatsky@chromium.org> | 2017-01-05 04:46:19 +0000 |
---|---|---|
committer | Mike Aizatsky <aizatsky@chromium.org> | 2017-01-05 04:46:19 +0000 |
commit | 2ced0edd1c1f21b5da38146def8a32363f5e50a1 (patch) | |
tree | 933eec9451921a2fb2e49622939eee01aecd6792 | |
parent | 192f0b66d24fc97e40b47b1c37bb0b6534cac94a (diff) | |
download | bcm5719-llvm-2ced0edd1c1f21b5da38146def8a32363f5e50a1.tar.gz bcm5719-llvm-2ced0edd1c1f21b5da38146def8a32363f5e50a1.zip |
[sancov] enabling tests on ppc and s390
The reason they should have failed: absent sancov.
In this test (vs the trace_pc_guard test) sancov is not
yet called (not implemented).
llvm-svn: 291080
-rw-r--r-- | compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc b/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc index ebbaeaa51f9..44fe9c0e5d4 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc +++ b/compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc @@ -1,7 +1,8 @@ // Tests trace pc guard coverage collection. // // REQUIRES: has_sancovcc,stable-runtime -// XFAIL: tsan,darwin,powerpc64,s390x +// XFAIL: tsan,darwin +// TODO: this will fail on powerpc64,s390x once sancov will be called. // // RUN: DIR=%t_workdir // RUN: rm -rf $DIR |