diff options
author | Clement Courbet <courbet@google.com> | 2019-02-26 09:16:51 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2019-02-26 09:16:51 +0000 |
commit | e6f22596e5de7f4fc6f1de4725d4aa9b6aeef4aa (patch) | |
tree | f1702fa957db2649b0e3faf22111647a6b27d4e6 | |
parent | cb6b499fe6a783c1eab702791a2585063fe8d453 (diff) | |
download | bcm5719-llvm-e6f22596e5de7f4fc6f1de4725d4aa9b6aeef4aa.tar.gz bcm5719-llvm-e6f22596e5de7f4fc6f1de4725d4aa9b6aeef4aa.zip |
[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
llvm-svn: 354853
-rw-r--r-- | compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc b/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc index 0699283ed39..cd96604779c 100644 --- a/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc +++ b/compiler-rt/test/asan/TestCases/Posix/bcmp_test.cc @@ -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) { |