]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/atomic/test/ipc_atomic_ref_api.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / atomic / test / ipc_atomic_ref_api.cpp
index 33ed5eda9fa186b5ca7e118aff802f6a88023034..38da809517480884ada08ba25fa5e603b082c342 100644 (file)
@@ -1,14 +1,17 @@
-//  Copyright (c) 2020 Andrey Semashev
+//  Copyright (c) 2020-2021 Andrey Semashev
 //
 //  Distributed under the Boost Software License, Version 1.0.
 //  See accompanying file LICENSE_1_0.txt or copy at
 //  http://www.boost.org/LICENSE_1_0.txt)
 
 #include <boost/atomic/ipc_atomic_ref.hpp>
+#include <boost/memory_order.hpp>
 
 #include <boost/config.hpp>
 #include <boost/cstdint.hpp>
 
+#include "aligned_object.hpp"
+#include "atomic_wrapper.hpp"
 #include "api_test_helpers.hpp"
 
 int main(int, char *[])
@@ -43,5 +46,20 @@ int main(int, char *[])
 
     test_lock_free_enum_api< ipc_atomic_ref_wrapper >();
 
+#if !defined(BOOST_ATOMIC_DETAIL_NO_CXX17_DEDUCTION_GUIDES)
+    if (boost::ipc_atomic_ref< int >::is_always_lock_free)
+    {
+        aligned_object< int, boost::ipc_atomic_ref< int >::required_alignment > object(0);
+        boost::ipc_atomic_ref r(object.get());
+        r.store(1, boost::memory_order_relaxed);
+    }
+#endif
+    if (boost::ipc_atomic_ref< int >::is_always_lock_free)
+    {
+        aligned_object< int, boost::ipc_atomic_ref< int >::required_alignment > object(0);
+        boost::ipc_atomic_ref< int > r = boost::make_ipc_atomic_ref(object.get());
+        r.store(1, boost::memory_order_relaxed);
+    }
+
     return boost::report_errors();
 }