test_physical_concurrency.cpp 546 B

1234567891011121314151617181920
  1. // Copyright (C) 2007 Anthony Williams
  2. // Copyright (C) 2013 Tim Blechmann
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #define BOOST_TEST_MODULE Boost.Threads: physical_concurrency test suite
  7. #include <boost/thread/thread_only.hpp>
  8. #include <boost/test/unit_test.hpp>
  9. #include <boost/thread/mutex.hpp>
  10. BOOST_AUTO_TEST_CASE(test_physical_concurrency_is_non_zero)
  11. {
  12. BOOST_CHECK(boost::thread::physical_concurrency()!=0);
  13. }