diff options
author | Kuba Brecka <kuba.brecka@gmail.com> | 2014-12-05 22:47:44 +0000 |
---|---|---|
committer | Kuba Brecka <kuba.brecka@gmail.com> | 2014-12-05 22:47:44 +0000 |
commit | ddac6cbb34d609fb300f2fe58077ee7828c18c19 (patch) | |
tree | 4767ceeca3ee7cf36b1efeeca6461d4d6bbe80d9 | |
parent | 7ed1bc9eb0264e67b3d8f4cbe0044b13261820a2 (diff) | |
download | bcm5719-llvm-ddac6cbb34d609fb300f2fe58077ee7828c18c19.tar.gz bcm5719-llvm-ddac6cbb34d609fb300f2fe58077ee7828c18c19.zip |
XFAILing suppression tests on Android. The suppression files are not being transfered to the device.
llvm-svn: 223540
3 files changed, 6 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/suppressions-function.cc b/compiler-rt/test/asan/TestCases/suppressions-function.cc index c18659e9f7b..c52b3c30351 100644 --- a/compiler-rt/test/asan/TestCases/suppressions-function.cc +++ b/compiler-rt/test/asan/TestCases/suppressions-function.cc @@ -6,6 +6,8 @@ // RUN: %clangxx_asan -O0 %s -o %t && ASAN_OPTIONS=suppressions=%t.supp %run %t 2>&1 | FileCheck --check-prefix=CHECK-IGNORE %s // RUN: %clangxx_asan -O3 %s -o %t && ASAN_OPTIONS=suppressions=%t.supp %run %t 2>&1 | FileCheck --check-prefix=CHECK-IGNORE %s +// XFAIL: android + #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/compiler-rt/test/asan/TestCases/suppressions-interceptor.cc b/compiler-rt/test/asan/TestCases/suppressions-interceptor.cc index a86d7c5cfac..10d24fdc30a 100644 --- a/compiler-rt/test/asan/TestCases/suppressions-interceptor.cc +++ b/compiler-rt/test/asan/TestCases/suppressions-interceptor.cc @@ -5,6 +5,8 @@ // RUN: echo "interceptor_name:strlen" > %t.supp // RUN: ASAN_OPTIONS=suppressions=%t.supp %run %t 2>&1 | FileCheck --check-prefix=CHECK-IGNORE %s +// XFAIL: android + #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/compiler-rt/test/asan/TestCases/suppressions-library.cc b/compiler-rt/test/asan/TestCases/suppressions-library.cc index cb4db013c1d..dfb0d4a5e03 100644 --- a/compiler-rt/test/asan/TestCases/suppressions-library.cc +++ b/compiler-rt/test/asan/TestCases/suppressions-library.cc @@ -7,6 +7,8 @@ // RUN: echo "interceptor_via_lib:%t-so.so" > %t.supp // RUN: ASAN_OPTIONS=suppressions=%t.supp %run %t 2>&1 | FileCheck --check-prefix=CHECK-IGNORE %s +// XFAIL: android + #include <stdio.h> #include <stdlib.h> #include <string.h> |