[compiler-rt] r246832 - [asan] Disable array cookie test on ARM, enable on Android/x86.
Evgeniy Stepanov via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 3 18:15:28 PDT 2015
Author: eugenis
Date: Thu Sep 3 20:15:28 2015
New Revision: 246832
URL: http://llvm.org/viewvc/llvm-project?rev=246832&view=rev
Log:
[asan] Disable array cookie test on ARM, enable on Android/x86.
The failure is caused by the missing implementation of array cookie
poisoning in Clang for ARMCXXABI and has nothing to do with Android
(and the test passes on Android/x86).
Modified:
compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc?rev=246832&r1=246831&r2=246832&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/new_array_cookie_with_new_from_class.cc Thu Sep 3 20:15:28 2015
@@ -2,8 +2,7 @@
// inside the class.
// RUN: %clangxx_asan %s -o %t && %run %t
//
-// XFAIL: android
-// XFAIL: armv7l-unknown-linux-gnueabihf
+// XFAIL: arm
#include <new>
#include <stdlib.h>
#include <stdint.h>
More information about the llvm-commits
mailing list