[compiler-rt] r335937 - [asan] Disable 3 tests on Android O+.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 28 15:54:55 PDT 2018


Author: eugenis
Date: Thu Jun 28 15:54:55 2018
New Revision: 335937

URL: http://llvm.org/viewvc/llvm-project?rev=335937&view=rev
Log:
[asan] Disable 3 tests on Android O+.

https://github.com/google/sanitizers/issues/981

Modified:
    compiler-rt/trunk/test/asan/TestCases/Linux/quarantine_size_mb.cc
    compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/hard_rss_limit_mb_test.cc
    compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/soft_rss_limit_mb_test.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Linux/quarantine_size_mb.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Linux/quarantine_size_mb.cc?rev=335937&r1=335936&r2=335937&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Linux/quarantine_size_mb.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Linux/quarantine_size_mb.cc Thu Jun 28 15:54:55 2018
@@ -5,6 +5,10 @@
 // RUN: %env_asan_opts=quarantine_size_mb=10:quarantine_size=20:verbosity=1  not %run %t  2>&1 | FileCheck %s  --check-prefix=BOTH
 // RUN: %env_asan_opts=quarantine_size_mb=1000:hard_rss_limit_mb=50 not  %run %t          2>&1 | FileCheck %s  --check-prefix=RSS_LIMIT
 // RUN: %env_asan_opts=hard_rss_limit_mb=20                         not  %run %t          2>&1 | FileCheck %s  --check-prefix=RSS_LIMIT
+
+// https://github.com/google/sanitizers/issues/981
+// XFAIL: android-26
+
 #include <string.h>
 char *g;
 

Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/hard_rss_limit_mb_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/hard_rss_limit_mb_test.cc?rev=335937&r1=335936&r2=335937&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/hard_rss_limit_mb_test.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/hard_rss_limit_mb_test.cc Thu Jun 28 15:54:55 2018
@@ -16,6 +16,9 @@
 // XFAIL: msan
 // XFAIL: ubsan
 
+// https://github.com/google/sanitizers/issues/981
+// XFAIL: android-26
+
 #include <string.h>
 #include <stdio.h>
 #include <unistd.h>

Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/soft_rss_limit_mb_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/soft_rss_limit_mb_test.cc?rev=335937&r1=335936&r2=335937&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/soft_rss_limit_mb_test.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/soft_rss_limit_mb_test.cc Thu Jun 28 15:54:55 2018
@@ -15,6 +15,10 @@
 // XFAIL: tsan
 // XFAIL: msan
 // XFAIL: ubsan
+
+// https://github.com/google/sanitizers/issues/981
+// XFAIL: android-26
+
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>




More information about the llvm-commits mailing list