]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/thread/test/test_physical_concurrency.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / thread / test / test_physical_concurrency.cpp
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
7 #define BOOST_TEST_MODULE Boost.Threads: physical_concurrency test suite
8
9 #include <boost/thread/thread_only.hpp>
10 #include <boost/test/unit_test.hpp>
11 #include <boost/thread/mutex.hpp>
12
13 BOOST_AUTO_TEST_CASE(test_physical_concurrency_is_non_zero)
14 {
15 BOOST_CHECK(boost::thread::physical_concurrency()!=0);
16 }
17
18
19
20