| 27 | namespace compute = boost::compute; |
| 28 | |
| 29 | BOOST_AUTO_TEST_CASE(create_wait_list) |
| 30 | { |
| 31 | compute::wait_list events; |
| 32 | BOOST_CHECK_EQUAL(events.size(), size_t(0)); |
| 33 | BOOST_CHECK_EQUAL(events.empty(), true); |
| 34 | BOOST_CHECK(events.get_event_ptr() == 0); |
| 35 | } |
| 36 | |
| 37 | #ifndef BOOST_COMPUTE_NO_HDR_INITIALIZER_LIST |
| 38 | BOOST_AUTO_TEST_CASE(create_wait_list_from_initializer_list) |
nothing calls this directly
no test coverage detected