From: Marshall Clow Date: Tue, 23 Feb 2016 18:09:38 +0000 (+0000) Subject: These new tests fail on the green-dragon bots, which use an old Apple compiler. X-Git-Tag: llvmorg-3.9.0-rc1~13437 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b9fae5a40a92e2bb6c35286b2b9f2a58809423b;p=platform%2Fupstream%2Fllvm.git These new tests fail on the green-dragon bots, which use an old Apple compiler. Since they're scheduled to be updated soon, we'll just comment out this test for the moment, and re-commit when the bots are updated. llvm-svn: 261661 --- diff --git a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp index d08e57d..57a73ca 100644 --- a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp +++ b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp @@ -8,6 +8,8 @@ //===----------------------------------------------------------------------===// // type_traits +// XFAIL: apple-clang-6.0 +// The Apple-6 compiler gets is_constructible wrong. // template // struct is_constructible; @@ -100,12 +102,12 @@ int main() test_is_not_constructible (); test_is_not_constructible (); -// LWG 2560 - test_is_not_constructible (); -#if TEST_STD_VERS > 11 - test_is_not_constructible (); - test_is_not_constructible (); - test_is_not_constructible (); - test_is_not_constructible (); -#endif +// LWG 2560 -- postpone this test until bots updated +// test_is_not_constructible (); +// #if TEST_STD_VERS > 11 +// test_is_not_constructible (); +// test_is_not_constructible (); +// test_is_not_constructible (); +// test_is_not_constructible (); +// #endif }