[PATCH] D52623: [sanitizer] Disable failing Android test after D52371

Kostya Kortchinsky via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 27 12:18:55 PDT 2018


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rCRT343252: [sanitizer] Disable failing Android test after D52371 (authored by cryptoad, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D52623?vs=167368&id=167371#toc

Repository:
  rCRT Compiler Runtime

https://reviews.llvm.org/D52623

Files:
  lib/sanitizer_common/tests/sanitizer_allocator_test.cc


Index: lib/sanitizer_common/tests/sanitizer_allocator_test.cc
===================================================================
--- lib/sanitizer_common/tests/sanitizer_allocator_test.cc
+++ lib/sanitizer_common/tests/sanitizer_allocator_test.cc
@@ -239,18 +239,19 @@
 }
 
 #if !SANITIZER_ANDROID
+//FIXME(kostyak): find values so that those work on Android as well.
 TEST(SanitizerCommon, SizeClassAllocator64Compact) {
   TestSizeClassAllocator<Allocator64Compact>();
 }
+
+TEST(SanitizerCommon, SizeClassAllocator64Dense) {
+  TestSizeClassAllocator<Allocator64Dense>();
+}
 #endif
 
 TEST(SanitizerCommon, SizeClassAllocator64VeryCompact) {
   TestSizeClassAllocator<Allocator64VeryCompact>();
 }
-
-TEST(SanitizerCommon, SizeClassAllocator64Dense) {
-  TestSizeClassAllocator<Allocator64Dense>();
-}
 #endif
 #endif
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52623.167371.patch
Type: text/x-patch
Size: 825 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180927/78cf027d/attachment.bin>


More information about the llvm-commits mailing list