7 #include <throwing/shared_ptr.hpp> 9 TEST_CASE(
"atomic_is_lock_free std::shared_ptr compatibility",
10 "[shared_ptr][atomic]") {
11 const auto std_p = std::make_shared<
int>(42);
12 const auto p = throwing::make_shared<
int>(42);
13 REQUIRE(atomic_is_lock_free(&p) == atomic_is_lock_free(&std_p));
16 TEST_CASE(
"atomic_load works in the same thread",
"[shared_ptr][atomic]") {
17 const auto p = throwing::make_shared<
int>(42);
18 auto p2 = atomic_load(&p);
22 TEST_CASE(
"atomic_load_explicit works in the same thread",
23 "[shared_ptr][atomic]") {
24 const auto p = throwing::make_shared<
int>(42);
25 auto p2 = atomic_load_explicit(&p, std::memory_order_seq_cst);
29 TEST_CASE(
"atomic_store works in the same thread",
"[shared_ptr][atomic]") {
30 const auto p1 = throwing::make_shared<
int>(1);
31 auto p2 = throwing::make_shared<
int>(2);
33 atomic_store(&p2, p1);
37 TEST_CASE(
"atomic_store_explicit works in the same thread",
38 "[shared_ptr][atomic]") {
39 const auto p1 = throwing::make_shared<
int>(1);
40 auto p2 = throwing::make_shared<
int>(2);
42 atomic_store_explicit(&p2, p1, std::memory_order_seq_cst);
46 TEST_CASE(
"atomic_exchange works in the same thread",
"[shared_ptr][atomic]") {
47 const auto p1 = throwing::make_shared<
int>(1);
48 auto p2 = throwing::make_shared<
int>(2);
49 auto p3 = atomic_exchange(&p2, p1);
54 TEST_CASE(
"atomic_exchange_explicit works in the same thread",
55 "[shared_ptr][atomic]") {
56 const auto p1 = throwing::make_shared<
int>(1);
57 auto p2 = throwing::make_shared<
int>(2);
58 auto p3 = atomic_exchange_explicit(&p2, p1, std::memory_order_seq_cst);
63 TEST_CASE(
"atomic_compare_exchange_weak works in the same thread",
64 "[shared_ptr][atomic]") {
65 auto p = throwing::make_shared<
int>(1);
67 auto desired = throwing::make_shared<
int>(2);
69 REQUIRE(atomic_compare_exchange_weak(&p, &expected, desired));
73 TEST_CASE(
"atomic_compare_exchange_weak works in the same thread, compares " 75 "[shared_ptr][atomic]") {
76 auto p = throwing::make_shared<
int>(1);
77 auto expected = throwing::make_shared<
int>(1);
78 auto desired = throwing::make_shared<
int>(3);
80 REQUIRE_FALSE(atomic_compare_exchange_weak(&p, &expected, desired));
81 REQUIRE(*expected == 1);
84 TEST_CASE(
"atomic_compare_exchange_strong works in the same thread",
85 "[shared_ptr][atomic]") {
86 auto p = throwing::make_shared<
int>(1);
88 auto desired = throwing::make_shared<
int>(2);
90 REQUIRE(atomic_compare_exchange_strong(&p, &expected, desired));
94 TEST_CASE(
"atomic_compare_exchange_strong works in the same thread, compares " 96 "[shared_ptr][atomic]") {
97 auto p = throwing::make_shared<
int>(1);
98 auto expected = throwing::make_shared<
int>(1);
99 auto desired = throwing::make_shared<
int>(3);
101 REQUIRE_FALSE(atomic_compare_exchange_strong(&p, &expected, desired));
102 REQUIRE(*expected == 1);
105 TEST_CASE(
"atomic_compare_exchange_weak_explicit works in the same thread",
106 "[shared_ptr][atomic]") {
107 auto p = throwing::make_shared<
int>(1);
109 auto desired = throwing::make_shared<
int>(2);
111 REQUIRE(atomic_compare_exchange_weak_explicit(&p, &expected, desired,
112 std::memory_order_seq_cst,
113 std::memory_order_seq_cst));
117 TEST_CASE(
"atomic_compare_exchange_strong_explicit works in the same thread, " 118 "compares pointer, not value",
119 "[shared_ptr][atomic]") {
120 auto p = throwing::make_shared<
int>(1);
121 auto expected = throwing::make_shared<
int>(1);
122 auto desired = throwing::make_shared<
int>(3);
124 REQUIRE_FALSE(atomic_compare_exchange_strong_explicit(
125 &p, &expected, desired, std::memory_order_seq_cst,
126 std::memory_order_seq_cst));
127 REQUIRE(*expected == 1);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")