diff options
4 files changed, 9 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc b/compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc index 8ae0f707b3f..a71480c797c 100644 --- a/compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc +++ b/compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cc @@ -1,6 +1,8 @@ // RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t // RUN: %run %t 2>&1 // +// XFAIL: arm-linux-gnueabi +// XFAIL: armv7l-unknown-linux-gnueabihf // This testcase checks that allocas and VLAs inside loop are correctly unpoisoned. diff --git a/compiler-rt/test/asan/TestCases/alloca_vla_interact.cc b/compiler-rt/test/asan/TestCases/alloca_vla_interact.cc index 2b4fb34bfc5..0aeba3306be 100644 --- a/compiler-rt/test/asan/TestCases/alloca_vla_interact.cc +++ b/compiler-rt/test/asan/TestCases/alloca_vla_interact.cc @@ -1,6 +1,9 @@ // RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t // RUN: %run %t 2>&1 // +// XFAIL: arm-linux-gnueabi +// XFAIL: armv7l-unknown-linux-gnueabihf +// XFAIL: powerpc64 // This testcase checks correct interaction between VLAs and allocas. diff --git a/compiler-rt/test/asan/TestCases/vla_condition_overflow.cc b/compiler-rt/test/asan/TestCases/vla_condition_overflow.cc index 07470d20235..4f083ee9a19 100644 --- a/compiler-rt/test/asan/TestCases/vla_condition_overflow.cc +++ b/compiler-rt/test/asan/TestCases/vla_condition_overflow.cc @@ -1,6 +1,8 @@ // RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // +// XFAIL: arm-linux-gnueabi +// XFAIL: armv7l-unknown-linux-gnueabihf #include <assert.h> #include <stdint.h> diff --git a/compiler-rt/test/asan/TestCases/vla_loop_overfow.cc b/compiler-rt/test/asan/TestCases/vla_loop_overfow.cc index facafb9577e..276409884fa 100644 --- a/compiler-rt/test/asan/TestCases/vla_loop_overfow.cc +++ b/compiler-rt/test/asan/TestCases/vla_loop_overfow.cc @@ -1,6 +1,8 @@ // RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t // RUN: not %run %t 2>&1 | FileCheck %s // +// XFAIL: arm-linux-gnueabi +// XFAIL: armv7l-unknown-linux-gnueabihf #include <assert.h> #include <stdint.h> |

