[compiler-rt] r238426 - [ASan] Disable alloca tests on ARM targets due to flakiness.

Yury Gribov y.gribov at samsung.com
Thu May 28 07:29:12 PDT 2015


Author: ygribov
Date: Thu May 28 09:29:12 2015
New Revision: 238426

URL: http://llvm.org/viewvc/llvm-project?rev=238426&view=rev
Log:
[ASan] Disable alloca tests on ARM targets due to flakiness.

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=238426&r1=238425&r2=238426&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 09:29:12 2015
@@ -1,8 +1,7 @@
 // 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
+// REQUIRES: stable-runtime
 
 // 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=238426&r1=238425&r2=238426&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 09:29:12 2015
@@ -1,8 +1,7 @@
 // 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
+// REQUIRES: stable-runtime
 // 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=238426&r1=238425&r2=238426&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 09:29:12 2015
@@ -1,8 +1,7 @@
 // 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
+// REQUIRES: stable-runtime
 
 #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=238426&r1=238425&r2=238426&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 09:29:12 2015
@@ -1,8 +1,7 @@
 // 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
+// REQUIRES: stable-runtime
 
 #include <assert.h>
 #include <stdint.h>





More information about the llvm-commits mailing list