[compiler-rt] r327091 - Mark the -overlap tests are "UNSUPPORTED: android". Android test harness doesn't know how to handle suppression files.
Kuba Mracek via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 8 16:41:29 PST 2018
Author: kuba.brecka
Date: Thu Mar 8 16:41:29 2018
New Revision: 327091
URL: http://llvm.org/viewvc/llvm-project?rev=327091&view=rev
Log:
Mark the -overlap tests are "UNSUPPORTED: android". Android test harness doesn't know how to handle suppression files.
Modified:
compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc
compiler-rt/trunk/test/asan/TestCases/strcpy-overlap.cc
compiler-rt/trunk/test/asan/TestCases/strncat-overlap.cc
compiler-rt/trunk/test/asan/TestCases/strncpy-overlap.cc
Modified: compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc?rev=327091&r1=327090&r2=327091&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/strcat-overlap.cc Thu Mar 8 16:41:29 2018
@@ -27,6 +27,7 @@
// RUN: %env_asan_opts=suppressions='"%t.supp"' %run %t
// UNSUPPORTED: win32
+// UNSUPPORTED: android
#include <string.h>
Modified: compiler-rt/trunk/test/asan/TestCases/strcpy-overlap.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/strcpy-overlap.cc?rev=327091&r1=327090&r2=327091&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/strcpy-overlap.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/strcpy-overlap.cc Thu Mar 8 16:41:29 2018
@@ -26,6 +26,8 @@
// RUN: echo "interceptor_name:strcpy" > %t.supp
// RUN: %env_asan_opts=suppressions='"%t.supp"' %run %t
+// UNSUPPORTED: android
+
#include <string.h>
Modified: compiler-rt/trunk/test/asan/TestCases/strncat-overlap.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/strncat-overlap.cc?rev=327091&r1=327090&r2=327091&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/strncat-overlap.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/strncat-overlap.cc Thu Mar 8 16:41:29 2018
@@ -26,6 +26,8 @@
// RUN: echo "interceptor_name:strncat" > %t.supp
// RUN: %env_asan_opts=suppressions='"%t.supp"' %run %t
+// UNSUPPORTED: android
+
#include <string.h>
Modified: compiler-rt/trunk/test/asan/TestCases/strncpy-overlap.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/strncpy-overlap.cc?rev=327091&r1=327090&r2=327091&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/strncpy-overlap.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/strncpy-overlap.cc Thu Mar 8 16:41:29 2018
@@ -26,6 +26,8 @@
// RUN: echo "interceptor_name:strncpy" > %t.supp
// RUN: %env_asan_opts=suppressions='"%t.supp"' %run %t
+// UNSUPPORTED: android
+
#include <string.h>
More information about the llvm-commits
mailing list