forked from OSchip/llvm-project
[Sanitizers] Disable sysmsg interceptors on Android
This commit is contained in:
parent
ddcf063dd5
commit
05d79295df
|
|
@ -270,7 +270,7 @@
|
|||
#define SANITIZER_INTERCEPT_SENDMSG SI_POSIX
|
||||
#define SANITIZER_INTERCEPT_RECVMMSG SI_LINUX
|
||||
#define SANITIZER_INTERCEPT_SENDMMSG SI_LINUX
|
||||
#define SANITIZER_INTERCEPT_SYSMSG SI_LINUX
|
||||
#define SANITIZER_INTERCEPT_SYSMSG SI_LINUX_NOT_ANDROID
|
||||
#define SANITIZER_INTERCEPT_GETPEERNAME SI_POSIX
|
||||
#define SANITIZER_INTERCEPT_IOCTL SI_POSIX
|
||||
#define SANITIZER_INTERCEPT_INET_ATON SI_POSIX
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
// RUN: %clang -O1 %s -o %t && %run %t
|
||||
// UNSUPPORTED: android
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue