• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
BOOST_AUTO_TEST_CASE(empty)18 BOOST_AUTO_TEST_CASE(empty){}
19 
20 #ifdef BOOST_COMPUTE_CL_VERSION_1_1
BOOST_AUTO_TEST_CASE(user_event)21 BOOST_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 }
33 #endif // BOOST_COMPUTE_CL_VERSION_1_1
34 
35 BOOST_AUTO_TEST_SUITE_END()
36