diff options
author | Justin Bogner <mail@justinbogner.com> | 2015-07-22 23:32:57 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2015-07-22 23:32:57 +0000 |
commit | 2ea8daaee1bcd639ea1663eb94954e348c535dea (patch) | |
tree | c6e205b83a613f11bcb5cb1c17b6e326e18a68f1 | |
parent | abb966d57e31932b61d5aed28bb806448aaaff5a (diff) | |
download | bcm5719-llvm-2ea8daaee1bcd639ea1663eb94954e348c535dea.tar.gz bcm5719-llvm-2ea8daaee1bcd639ea1663eb94954e348c535dea.zip |
Mark this test as XFAIL with older compilers, since they hit PR18097
llvm-svn: 242967
-rw-r--r-- | libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ctor.pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ctor.pass.cpp b/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ctor.pass.cpp index 0eda2338d25..f85172a0149 100644 --- a/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ctor.pass.cpp +++ b/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ctor.pass.cpp @@ -10,6 +10,10 @@ // UNSUPPORTED: libcpp-has-no-threads // UNSUPPORTED: c++98, c++03 +// NOTE: atomic<> of a TriviallyCopyable class is wrongly rejected by older +// clang versions. It was fixed right before the llvm 3.5 release. See PR18097. +// XFAIL: apple-clang-6.0, clang-3.4, clang-3.3 + // <atomic> // constexpr atomic<T>::atomic(T value) |