[compiler-rt] r291080 - [sancov] enabling tests on ppc and s390
Mike Aizatsky via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 4 20:46:20 PST 2017
Author: aizatsky
Date: Wed Jan 4 22:46:19 2017
New Revision: 291080
URL: http://llvm.org/viewvc/llvm-project?rev=291080&view=rev
Log:
[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).
Modified:
compiler-rt/trunk/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc
Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc?rev=291080&r1=291079&r2=291080&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cc Wed Jan 4 22:46:19 2017
@@ -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
More information about the llvm-commits
mailing list