Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / thread / thread.jthread / get_stop_source.pass.cpp
blob8f35db297b74962eb81615c058372884ed5014a4
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // UNSUPPORTED: no-threads
10 // UNSUPPORTED: libcpp-has-no-experimental-stop_token
11 // UNSUPPORTED: c++03, c++11, c++14, c++17
12 // XFAIL: availability-synchronization_library-missing
14 // [[nodiscard]] stop_source get_stop_source() noexcept;
16 #include <cassert>
17 #include <concepts>
18 #include <stop_token>
19 #include <thread>
20 #include <type_traits>
22 #include "make_test_thread.h"
23 #include "test_macros.h"
25 static_assert(noexcept(std::declval<std::jthread&>().get_stop_source()));
27 int main(int, char**) {
28 // Represents a thread
30 std::jthread jt = support::make_test_jthread([] {});
31 std::same_as<std::stop_source> decltype(auto) result = jt.get_stop_source();
32 assert(result.stop_possible());
35 // Does not represents a thread
37 std::jthread jt{};
38 std::same_as<std::stop_source> decltype(auto) result = jt.get_stop_source();
39 assert(!result.stop_possible());
42 return 0;