It looks like this test XPASSes when the deployment target is older than the OS of the system the test is running on. It looks like we run the tests with -mmacosx-version-min=10.12, and that makes the test expect to fail, but it passes. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@340427 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
827 B
C++
28 lines
827 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
|
|
|
// aligned allocation functions are not provided prior to macosx10.13
|
|
// UNSUPPORTED: macosx10.12
|
|
// UNSUPPORTED: macosx10.11
|
|
// UNSUPPORTED: macosx10.10
|
|
// UNSUPPORTED: macosx10.9
|
|
// UNSUPPORTED: macosx10.8
|
|
// UNSUPPORTED: macosx10.7
|
|
|
|
#include <new>
|
|
|
|
|
|
#ifdef _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
|
|
# error "libc++ should have aligned allocation in C++17 and up when targeting a platform that supports it"
|
|
#endif
|
|
|
|
int main() { }
|