]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/test/awaitable.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / asio / test / awaitable.cpp
CommitLineData
7c673cae 1//
92f5a8d4
TL
2// awaitable.cpp
3// ~~~~~~~~~~~~~
7c673cae 4//
1e59de90 5// Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
6//
7// Distributed under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9//
10
11// Disable autolinking for unit tests.
12#if !defined(BOOST_ALL_NO_LIB)
13#define BOOST_ALL_NO_LIB 1
14#endif // !defined(BOOST_ALL_NO_LIB)
15
16// Test that header file is self-contained.
92f5a8d4 17#include <boost/asio/awaitable.hpp>
7c673cae
FG
18
19#include "unit_test.hpp"
20
21BOOST_ASIO_TEST_SUITE
22(
92f5a8d4 23 "awaitable",
7c673cae
FG
24 BOOST_ASIO_TEST_CASE(null_test)
25)