[compiler-rt] r354853 - [compiler-rt] disable asan bcmp tests on android.
Clement Courbet via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 26 01:16:52 PST 2019
Author: courbet
Date: Tue Feb 26 01:16:51 2019
New Revision: 354853
URL: http://llvm.org/viewvc/llvm-project?rev=354853&view=rev
Log:
[compiler-rt] disable asan bcmp tests on android.
Android does not have bcmp.
sanitizer-x86_64-linux-android: run instrumented asan tests [arm/aosp_marlin-userdebug/PI] - stdio
Modified:
compiler-rt/trunk/test/asan/TestCases/Posix/bcmp_test.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Posix/bcmp_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/bcmp_test.cc?rev=354853&r1=354852&r2=354853&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/bcmp_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/bcmp_test.cc Tue Feb 26 01:16:51 2019
@@ -4,6 +4,7 @@
// RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s
// REQUIRES: compiler-rt-optimized
+// UNSUPPORTED: android
#include <string.h>
int main(int argc, char **argv) {
More information about the llvm-commits
mailing list