forked from OSchip/llvm-project
[compiler-rt] Disable coverage trace pc guard tests on Thumb
These are failing on our silent bot: https://lab.llvm.org/staging/#/builders/162/builds/358 $ <run cmd> main foo bar baz SanitizerCoverage: ./sanitizer_coverage_trace_pc_guard-dso.cpp.tmp.2122517.sancov: 2 PCs written SanitizerCoverage: ./sanitizer_coverage_trace_pc_guard-dso.cpp.tmp_2.so.2122517.sancov: 1 PCs written SanitizerCoverage: ./sanitizer_coverage_trace_pc_guard-dso.cpp.tmp_1.so.2122517.sancov: 1 PCs written $ <sancov cmd> ERROR: Coverage points in binary and .sancov file do not match. Also reproduces if you build for Thumb on v8 hardware. Doesn't fail when built with Arm only code so I guess the Thumb mode bit in the PCs might be the issue.
This commit is contained in:
parent
11d144c576
commit
ee95fe5caa
|
@ -1,7 +1,7 @@
|
|||
// Tests trace pc guard coverage collection.
|
||||
|
||||
// REQUIRES: has_sancovcc
|
||||
// UNSUPPORTED: ubsan,powerpc64,s390x
|
||||
// UNSUPPORTED: ubsan,powerpc64,s390x,thumb
|
||||
// XFAIL: tsan,darwin
|
||||
// XFAIL: android && asan
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Tests trace pc guard coverage collection.
|
||||
|
||||
// REQUIRES: has_sancovcc
|
||||
// UNSUPPORTED: ubsan,i386-darwin,powerpc64,s390x
|
||||
// UNSUPPORTED: ubsan,i386-darwin,powerpc64,s390x,thumb
|
||||
// XFAIL: tsan
|
||||
// XFAIL: android && asan
|
||||
|
||||
|
|
Loading…
Reference in New Issue