[compiler-rt] r321374 - [Sanitizers] Disable new_delete_test.cc on Android until it's supported.

Alex Shlyapnikov via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 22 10:20:00 PST 2017


Author: alekseyshl
Date: Fri Dec 22 10:19:59 2017
New Revision: 321374

URL: http://llvm.org/viewvc/llvm-project?rev=321374&view=rev
Log:
[Sanitizers] Disable new_delete_test.cc on Android until it's supported.

Modified:
    compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/new_delete_test.cc

Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/new_delete_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/new_delete_test.cc?rev=321374&r1=321373&r2=321374&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/new_delete_test.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/new_delete_test.cc Fri Dec 22 10:19:59 2017
@@ -1,8 +1,8 @@
 // RUN: %clangxx -std=c++1z -faligned-allocation -O0 %s -o %t && %run %t
 // RUN: %clangxx -std=c++1z -faligned-allocation -fsized-deallocation -O0 %s -o %t && %run %t
 
-// ubsan does not intercept new/delete.
-// UNSUPPORTED: ubsan
+// ubsan does not intercept new/delete, adnroid is to be fixed.
+// UNSUPPORTED: ubsan,android
 
 // Check that all new/delete variants are defined and work with supported
 // sanitizers. Sanitizer-specific failure modes tests are supposed to go to




More information about the llvm-commits mailing list