1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: no-threads
// UNSUPPORTED: c++03, c++11, c++14, c++17
// ADDITIONAL_COMPILE_FLAGS(gcc-style-warnings): -Wno-self-move
// jthread& operator=(jthread&&) noexcept;
#include <atomic>
#include <cassert>
#include <concepts>
#include <stop_token>
#include <thread>
#include <type_traits>
#include <utility>
#include <vector>
#include "make_test_thread.h"
#include "test_macros.h"
static_assert(std::is_nothrow_move_assignable_v<std::jthread>);
int main(int, char**) {
// If &x == this is true, there are no effects.
{
std::jthread j = support::make_test_jthread([] {});
auto id = j.get_id();
auto ssource = j.get_stop_source();
j = std::move(j);
assert(j.get_id() == id);
assert(j.get_stop_source() == ssource);
}
// if joinable() is true, calls request_stop() and then join()
// request_stop is called
{
std::jthread j1 = support::make_test_jthread([] {});
bool called = false;
std::stop_callback cb(j1.get_stop_token(), [&called] { called = true; });
std::jthread j2 = support::make_test_jthread([] {});
j1 = std::move(j2);
assert(called);
}
// if joinable() is true, calls request_stop() and then join()
// join is called
{
std::atomic_int calledTimes = 0;
std::vector<std::jthread> jts;
constexpr auto numberOfThreads = 10u;
jts.reserve(numberOfThreads);
for (auto i = 0u; i < numberOfThreads; ++i) {
jts.emplace_back(support::make_test_jthread([&] {
std::this_thread::sleep_for(std::chrono::milliseconds(2));
calledTimes.fetch_add(1, std::memory_order_relaxed);
}));
}
for (auto i = 0u; i < numberOfThreads; ++i) {
jts[i] = std::jthread{};
}
// If join was called as expected, calledTimes must equal to numberOfThreads
// If join was not called, there is a chance that the check below happened
// before test threads incrementing the counter, thus calledTimed would
// be less than numberOfThreads.
// This is not going to catch issues 100%. Creating more threads to increase
// the probability of catching the issue
assert(calledTimes.load(std::memory_order_relaxed) == numberOfThreads);
}
// then assigns the state of x to *this
{
std::jthread j1 = support::make_test_jthread([] {});
std::jthread j2 = support::make_test_jthread([] {});
auto id2 = j2.get_id();
auto ssource2 = j2.get_stop_source();
j1 = std::move(j2);
assert(j1.get_id() == id2);
assert(j1.get_stop_source() == ssource2);
}
// sets x to a default constructed state
{
std::jthread j1 = support::make_test_jthread([] {});
std::jthread j2 = support::make_test_jthread([] {});
j1 = std::move(j2);
assert(j2.get_id() == std::jthread::id());
assert(!j2.get_stop_source().stop_possible());
}
// joinable is false
{
std::jthread j1;
std::jthread j2 = support::make_test_jthread([] {});
auto j2Id = j2.get_id();
j1 = std::move(j2);
assert(j1.get_id() == j2Id);
}
// LWG3788: self-assignment
{
std::jthread j = support::make_test_jthread([] {});
auto oldId = j.get_id();
j = std::move(j);
assert(j.get_id() == oldId);
}
return 0;
}
|