diff options
author | Clement Courbet <courbet@google.com> | 2019-02-26 15:25:04 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2019-02-26 15:25:04 +0000 |
commit | ea7bd2f0169e579900b1372323e7d384b9b28772 (patch) | |
tree | 10c449ac47c38b958eae35892265c068a8dfb3c0 | |
parent | e8bf0f79bdb60b30b00e15712b786eb5ce990c7a (diff) | |
download | bcm5719-llvm-ea7bd2f0169e579900b1372323e7d384b9b28772.tar.gz bcm5719-llvm-ea7bd2f0169e579900b1372323e7d384b9b28772.zip |
[compiler-rt] Disable failing test on darwin during investigation.
/Users/buildslave/jenkins/workspace/clang-stage1-configure-RA/llvm/projects/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc:14:12: error: CHECK: expected string not found in input
// CHECK: {{#1.*bcmp}}
^
<stdin>:2:57: note: scanning from here
==34677==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7ffee93777c4 at pc 0x0001068a7285 bp 0x7ffee9377770 sp 0x7ffee9376ef8
^
<stdin>:6:20: note: possible intended match here
#2 0x106888e77 in main bcmp_test.cc:12
^
llvm-svn: 354888
-rw-r--r-- | compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc b/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc index cd96604779c..e4e9739d7c9 100644 --- a/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc +++ b/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc @@ -5,6 +5,7 @@ // REQUIRES: compiler-rt-optimized // UNSUPPORTED: android +// XFAIL: darwin #include <string.h> int main(int argc, char **argv) { |