summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKuba Brecka <kuba.brecka@gmail.com>2014-12-05 22:47:44 +0000
committerKuba Brecka <kuba.brecka@gmail.com>2014-12-05 22:47:44 +0000
commit8a3fce5edfbc01bf0946ba9e56cf0c56dab87ea9 (patch)
treecd76893b14857005fad7b12d31f8e409a00e8f35
parent721ec18fd35095700d46be4981d16c92722d6552 (diff)
XFAILing suppression tests on Android. The suppression files are not being transfered to the device.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@223540 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/asan/TestCases/suppressions-function.cc2
-rw-r--r--test/asan/TestCases/suppressions-interceptor.cc2
-rw-r--r--test/asan/TestCases/suppressions-library.cc2
3 files changed, 6 insertions, 0 deletions
diff --git a/test/asan/TestCases/suppressions-function.cc b/test/asan/TestCases/suppressions-function.cc
index c18659e9f..c52b3c303 100644
--- a/test/asan/TestCases/suppressions-function.cc
+++ b/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/test/asan/TestCases/suppressions-interceptor.cc b/test/asan/TestCases/suppressions-interceptor.cc
index a86d7c5cf..10d24fdc3 100644
--- a/test/asan/TestCases/suppressions-interceptor.cc
+++ b/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/test/asan/TestCases/suppressions-library.cc b/test/asan/TestCases/suppressions-library.cc
index cb4db013c..dfb0d4a5e 100644
--- a/test/asan/TestCases/suppressions-library.cc
+++ b/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>