test_user_event.cpp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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. #define BOOST_TEST_MODULE TestUserEvent
  11. #include <boost/test/unit_test.hpp>
  12. #include <boost/compute/user_event.hpp>
  13. #include "context_setup.hpp"
  14. BOOST_AUTO_TEST_CASE(empty){}
  15. #ifdef BOOST_COMPUTE_CL_VERSION_1_1
  16. BOOST_AUTO_TEST_CASE(user_event)
  17. {
  18. REQUIRES_OPENCL_VERSION(1, 1);
  19. boost::compute::user_event event(context);
  20. BOOST_CHECK(event.get() != cl_event());
  21. BOOST_CHECK(event.status() != CL_COMPLETE);
  22. event.set_status(CL_COMPLETE);
  23. event.wait();
  24. BOOST_CHECK(event.status() == CL_COMPLETE);
  25. }
  26. #endif // BOOST_COMPUTE_CL_VERSION_1_1
  27. BOOST_AUTO_TEST_SUITE_END()