blob: b24f5281c75b1784881b1ed3836ab97811edafe6 (
plain) (
blame)
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
|
//
// consign.cpp
// ~~~~~~~~~~
//
// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// 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)
//
// Disable autolinking for unit tests.
#if !defined(BOOST_ALL_NO_LIB)
#define BOOST_ALL_NO_LIB 1
#endif // !defined(BOOST_ALL_NO_LIB)
// Test that header file is self-contained.
#include "asio/consign.hpp"
#include "asio/bind_executor.hpp"
#include "asio/io_context.hpp"
#include "asio/post.hpp"
#include "asio/system_timer.hpp"
#include "unit_test.hpp"
void consign_test()
{
asio::io_context io1;
asio::io_context io2;
asio::system_timer timer1(io1);
int count = 0;
timer1.expires_after(asio::chrono::seconds(0));
timer1.async_wait(
asio::consign(
asio::bind_executor(io2.get_executor(),
[&count](asio::error_code)
{
++count;
}), 123, 321));
ASIO_CHECK(count == 0);
io1.run();
ASIO_CHECK(count == 0);
io2.run();
ASIO_CHECK(count == 1);
}
ASIO_TEST_SUITE
(
"consign",
ASIO_TEST_CASE(consign_test)
)
|