diff options
author | Renato Golin <renato.golin@linaro.org> | 2014-10-14 21:00:22 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2014-10-14 21:00:22 +0000 |
commit | 498b223eec9a7060f897633e72b8e0a14f937024 (patch) | |
tree | dcf5489213efbc4e73f76a9a1cbdaa2b0e591bad /compiler-rt/test/asan | |
parent | b98dc4b015c7b59d11dccc4d86b30c310e9335f2 (diff) | |
download | bcm5719-llvm-498b223eec9a7060f897633e72b8e0a14f937024.tar.gz bcm5719-llvm-498b223eec9a7060f897633e72b8e0a14f937024.zip |
Re-enable ASAN/UBSAN tests on ARM, with VFP3 they began to pass
When compiling with -mfpu=vfpv3, those tests began to pass, like the others
with "Illegal Instruction" error, so removing the XFAIL from them should
get the bot green (and have more tests!).
llvm-svn: 219721
Diffstat (limited to 'compiler-rt/test/asan')
-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, 0 insertions, 4 deletions
diff --git a/compiler-rt/test/asan/TestCases/Linux/clone_test.cc b/compiler-rt/test/asan/TestCases/Linux/clone_test.cc index f114a1ae558..e9c1f166eb4 100644 --- a/compiler-rt/test/asan/TestCases/Linux/clone_test.cc +++ b/compiler-rt/test/asan/TestCases/Linux/clone_test.cc @@ -6,7 +6,6 @@ // 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 7cda42accca..5657083c586 100644 --- a/compiler-rt/test/asan/TestCases/printf-1.c +++ b/compiler-rt/test/asan/TestCases/printf-1.c @@ -2,7 +2,6 @@ // 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 2e72aa66848..d16833d83c6 100644 --- a/compiler-rt/test/asan/TestCases/printf-3.c +++ b/compiler-rt/test/asan/TestCases/printf-3.c @@ -5,7 +5,6 @@ // 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 25095514e79..ac2c1c4b299 100644 --- a/compiler-rt/test/asan/TestCases/printf-5.c +++ b/compiler-rt/test/asan/TestCases/printf-5.c @@ -6,7 +6,6 @@ // FIXME: printf is not intercepted on Windows yet. // XFAIL: win32 -// XFAIL: armv7l-unknown-linux-gnueabihf #include <stdio.h> #include <string.h> |