[asan] Suppress read_binary_name_regtest.c test failure on unsupported hosts.

read_binary_name_regtest.c requires seccomp kernel headers.
Make the test pass if <linux/seccomp.h> is missing.

llvm-svn: 241119
This commit is contained in:
Evgeniy Stepanov 2015-06-30 21:28:55 +00:00
parent b374dc651c
commit b41e87c534
1 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,10 @@
// Regression test for https://crbug.com/502974, where ASan was unable to read
// the binary name because of sandbox restrictions.
// This test uses seccomp-BPF to restrict the readlink() system call and makes
// sure ASan is still able to
// RUN: %clang_asan %s -o %t && not %run %t 2>&1 | FileCheck %s
// sure ASan is still able to
// RUN: not ls /usr/include/linux/seccomp.h || ( %clang_asan %s -o %t && not %run %t 2>&1 | FileCheck %s )
// UNSUPPORTED: android
#include <errno.h>
#include <stddef.h>
#include <stdlib.h>