[compiler-rt] r238409 - [ASan] XFAIL VLA tests on ARM and PowerPC. Patch by Max Ostapenko!
Yury Gribov
y.gribov at samsung.com
Thu May 28 03:30:46 PDT 2015
Author: ygribov
Date: Thu May 28 05:30:46 2015
New Revision: 238409
URL: http://llvm.org/viewvc/llvm-project?rev=238409&view=rev
Log:
[ASan] XFAIL VLA tests on ARM and PowerPC. Patch by Max Ostapenko!
Modified:
compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc
compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc
compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc
compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc
Modified: compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc?rev=238409&r1=238408&r2=238409&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc Thu May 28 05:30:46 2015
@@ -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.
Modified: compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc?rev=238409&r1=238408&r2=238409&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc Thu May 28 05:30:46 2015
@@ -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.
Modified: compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc?rev=238409&r1=238408&r2=238409&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc Thu May 28 05:30:46 2015
@@ -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>
Modified: compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc?rev=238409&r1=238408&r2=238409&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc Thu May 28 05:30:46 2015
@@ -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>
More information about the llvm-commits
mailing list