]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/compute/test/test_user_event.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / compute / test / test_user_event.cpp
CommitLineData
7c673cae
FG
1//---------------------------------------------------------------------------//
2// Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz@gmail.com>
3//
4// Distributed under the Boost Software License, Version 1.0
5// See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt
7//
8// See http://boostorg.github.com/compute for more information.
9//---------------------------------------------------------------------------//
10
11#define BOOST_TEST_MODULE TestUserEvent
12#include <boost/test/unit_test.hpp>
13
14#include <boost/compute/user_event.hpp>
15
16#include "context_setup.hpp"
17
18BOOST_AUTO_TEST_CASE(empty){}
19
b32b8144 20#ifdef BOOST_COMPUTE_CL_VERSION_1_1
7c673cae
FG
21BOOST_AUTO_TEST_CASE(user_event)
22{
23 REQUIRES_OPENCL_VERSION(1, 1);
24
25 boost::compute::user_event event(context);
26 BOOST_CHECK(event.get() != cl_event());
27 BOOST_CHECK(event.status() != CL_COMPLETE);
28
29 event.set_status(CL_COMPLETE);
30 event.wait();
31 BOOST_CHECK(event.status() == CL_COMPLETE);
32}
b32b8144 33#endif // BOOST_COMPUTE_CL_VERSION_1_1
7c673cae
FG
34
35BOOST_AUTO_TEST_SUITE_END()