| 23 | #include "context_setup.hpp" |
| 24 | |
| 25 | BOOST_AUTO_TEST_CASE(null_event) |
| 26 | { |
| 27 | boost::compute::event null; |
| 28 | BOOST_CHECK(null.get() == cl_event()); |
| 29 | } |
| 30 | |
| 31 | #if defined(CL_VERSION_1_1) && defined(BOOST_COMPUTE_USE_CPP11) |
| 32 | std::mutex callback_mutex; |
nothing calls this directly
no test coverage detected