From ed6c20e48d547bdda5c68ba1b8f79a16916683ab Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Wed, 22 Aug 2018 17:47:41 +0000 Subject: [PATCH] Disable the aligned allocation test on old mac versions instead of XFAILing it 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 --- test/libcxx/memory/aligned_allocation_macro.pass.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/libcxx/memory/aligned_allocation_macro.pass.cpp b/test/libcxx/memory/aligned_allocation_macro.pass.cpp index c1a4252aa..0e13b15f2 100644 --- a/test/libcxx/memory/aligned_allocation_macro.pass.cpp +++ b/test/libcxx/memory/aligned_allocation_macro.pass.cpp @@ -10,12 +10,12 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // aligned allocation functions are not provided prior to macosx10.13 -// XFAIL: macosx10.12 -// XFAIL: macosx10.11 -// XFAIL: macosx10.10 -// XFAIL: macosx10.9 -// XFAIL: macosx10.8 -// XFAIL: macosx10.7 +// UNSUPPORTED: macosx10.12 +// UNSUPPORTED: macosx10.11 +// UNSUPPORTED: macosx10.10 +// UNSUPPORTED: macosx10.9 +// UNSUPPORTED: macosx10.8 +// UNSUPPORTED: macosx10.7 #include