diff options
author | Renato Golin <renato.golin@linaro.org> | 2014-10-09 11:34:40 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2014-10-09 11:34:40 +0000 |
commit | e68963a98646a73d92305cb9e0aaf86f147f1019 (patch) | |
tree | 7e49ebfbce24161b494e83f2302a82c5491c86dc /compiler-rt/test/asan/TestCases | |
parent | 72a799a68a6b4a4e690efb68ebe5e4c445f6f5c3 (diff) | |
download | bcm5719-llvm-e68963a98646a73d92305cb9e0aaf86f147f1019.tar.gz bcm5719-llvm-e68963a98646a73d92305cb9e0aaf86f147f1019.zip |
XFAIL some more sanitiser ARMv7l tests
Some more tests failing on the ARMv7 buildbot.
llvm-svn: 219404
Diffstat (limited to 'compiler-rt/test/asan/TestCases')
-rw-r--r-- | compiler-rt/test/asan/TestCases/Linux/clone_test.cc | 1 | ||||
-rw-r--r-- | compiler-rt/test/asan/TestCases/printf-1.c | 1 | ||||
-rw-r--r-- | compiler-rt/test/asan/TestCases/printf-3.c | 1 | ||||
-rw-r--r-- | compiler-rt/test/asan/TestCases/printf-5.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Linux/clone_test.cc b/compiler-rt/test/asan/TestCases/Linux/clone_test.cc index e9c1f166eb4..f114a1ae558 100644 --- a/compiler-rt/test/asan/TestCases/Linux/clone_test.cc +++ b/compiler-rt/test/asan/TestCases/Linux/clone_test.cc @@ -6,6 +6,7 @@ // RUN: %clangxx_asan -O2 %s -o %t && %run %t | FileCheck %s // RUN: %clangxx_asan -O3 %s -o %t && %run %t | FileCheck %s // XFAIL: arm-linux-gnueabi +// XFAIL: armv7l-unknown-linux-gnueabihf #include <stdio.h> #include <sched.h> diff --git a/compiler-rt/test/asan/TestCases/printf-1.c b/compiler-rt/test/asan/TestCases/printf-1.c index 5657083c586..7cda42accca 100644 --- a/compiler-rt/test/asan/TestCases/printf-1.c +++ b/compiler-rt/test/asan/TestCases/printf-1.c @@ -2,6 +2,7 @@ // RUN: env ASAN_OPTIONS=check_printf=1 %run %t 2>&1 | FileCheck %s // RUN: env ASAN_OPTIONS=check_printf=0 %run %t 2>&1 | FileCheck %s // RUN: %run %t 2>&1 | FileCheck %s +// XFAIL: armv7l-unknown-linux-gnueabihf #include <stdio.h> #if defined(_WIN32) diff --git a/compiler-rt/test/asan/TestCases/printf-3.c b/compiler-rt/test/asan/TestCases/printf-3.c index d16833d83c6..2e72aa66848 100644 --- a/compiler-rt/test/asan/TestCases/printf-3.c +++ b/compiler-rt/test/asan/TestCases/printf-3.c @@ -5,6 +5,7 @@ // FIXME: printf is not intercepted on Windows yet. // XFAIL: win32 +// XFAIL: armv7l-unknown-linux-gnueabihf #include <stdio.h> int main() { diff --git a/compiler-rt/test/asan/TestCases/printf-5.c b/compiler-rt/test/asan/TestCases/printf-5.c index ac2c1c4b299..25095514e79 100644 --- a/compiler-rt/test/asan/TestCases/printf-5.c +++ b/compiler-rt/test/asan/TestCases/printf-5.c @@ -6,6 +6,7 @@ // FIXME: printf is not intercepted on Windows yet. // XFAIL: win32 +// XFAIL: armv7l-unknown-linux-gnueabihf #include <stdio.h> #include <string.h> |