[sanitizer] Disabled 2 tests on Android

They block bot upgrade to NDK 21.
This commit is contained in:
Vitaly Buka 2020-10-31 03:55:09 -07:00
parent 6021cbea4d
commit f9dd0166f1
2 changed files with 7 additions and 0 deletions

View File

@ -1,6 +1,9 @@
// RUN: %clangxx_asan %s -o %t && %run %t
// RUN: %clangxx_asan %s -o %t %linux_static_libstdcplusplus && %run %t
// Investigate why it fails with NDK 21.
// UNSUPPORTED: android
#include <stdio.h>
static volatile int zero = 0;
inline void pretend_to_do_something(void *x) {

View File

@ -1,5 +1,9 @@
// Check that mallopt does not return invalid values (ex. -1).
// RUN: %clangxx -O2 %s -o %t && %run %t
// Investigate why it fails with NDK 21.
// UNSUPPORTED: android
#include <assert.h>
#include <malloc.h>