Disable a test using posix_spawn on Android

llvm-svn: 286673
This commit is contained in:
Reid Kleckner 2016-11-11 23:23:33 +00:00
parent bcd35a8ec1
commit cb03ef90bb
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,9 @@
// RUN: %clangxx_asan -g %stdcxx11 -Wno-deprecated-declarations %s -o %t // RUN: %clangxx_asan -g %stdcxx11 -Wno-deprecated-declarations %s -o %t
// RUN: %env_asan_opts=exitcode=42 %run %t | FileCheck %s // RUN: %env_asan_opts=exitcode=42 %run %t | FileCheck %s
// Android doesn't have spawn.h or posix_spawn.
// UNSUPPORTED: android
// CHECK: got expected 42 exit code // CHECK: got expected 42 exit code
#include <stdlib.h> #include <stdlib.h>