mirror of
https://github.com/boostorg/thread.git
synced 2026-01-24 06:22:12 +00:00
* [@http://svn.boost.org/trac/boost/ticket/2309 #2309] Lack of g++ symbol visibility support in Boost.Thread. * [@http://svn.boost.org/trac/boost/ticket/2639 #2639] documentation should be extended(defer_lock, try_to_lock, ...). * [@http://svn.boost.org/trac/boost/ticket/3639 #3639] Boost.Thread doesn't build with Sun-5.9 on Linux. * [@http://svn.boost.org/trac/boost/ticket/3762 #3762] Thread can't be compiled with winscw (Codewarrior by Nokia). * [@http://svn.boost.org/trac/boost/ticket/3885 #3885] document about mix usage of boost.thread and native thread api. * [@http://svn.boost.org/trac/boost/ticket/3975 #3975] Incorrect precondition for promise::set_wait_callback(). * [@http://svn.boost.org/trac/boost/ticket/4048 #4048] thread::id formatting involves locale * [@http://svn.boost.org/trac/boost/ticket/4315 #4315] gcc 4.4 Warning: inline ... declared as dllimport: attribute ignored. * [@http://svn.boost.org/trac/boost/ticket/4480 #4480] OpenVMS patches for compiler issues workarounds. * [@http://svn.boost.org/trac/boost/ticket/4819 #4819] boost.thread's documentation misprints. * [@http://svn.boost.org/trac/boost/ticket/5423 #5423] thread issues with C++0x. * [@http://svn.boost.org/trac/boost/ticket/5617 #5617] boost::thread::id copy ctor. * [@http://svn.boost.org/trac/boost/ticket/5739 #5739] set-but-not-used warnings with gcc-4.6. * [@http://svn.boost.org/trac/boost/ticket/5826 #5826] threads.cpp: resource leak on threads creation failure. * [@http://svn.boost.org/trac/boost/ticket/5839 #5839] thread.cpp: ThreadProxy leaks on exceptions. * [@http://svn.boost.org/trac/boost/ticket/5859 #5859] win32 shared_mutex constructor leaks on exceptions. * [@http://svn.boost.org/trac/boost/ticket/6100 #6100] Compute hardware_concurrency() using get_nprocs() on GLIBC systems. * [@http://svn.boost.org/trac/boost/ticket/6168 #6168] recursive_mutex is using wrong config symbol (possible typo). * [@http://svn.boost.org/trac/boost/ticket/6175 #6175] Compile error with SunStudio. * [@http://svn.boost.org/trac/boost/ticket/6200 #6200] patch to have condition_variable and mutex error better handle EINTR. * [@http://svn.boost.org/trac/boost/ticket/6207 #6207] shared_lock swap compiler error on clang 3.0 c++11. * [@http://svn.boost.org/trac/boost/ticket/6208 #6208] try_lock_wrapper swap compiler error on clang 3.0 c++11. [SVN r76291]
150 lines
5.1 KiB
C++
150 lines
5.1 KiB
C++
// Copyright (C) 2007 Anthony Williams
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
#include <boost/thread/thread.hpp>
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <boost/bind.hpp>
|
|
|
|
void do_nothing()
|
|
{}
|
|
|
|
void test_thread_id_for_default_constructed_thread_is_default_constructed_id()
|
|
{
|
|
boost::thread t;
|
|
BOOST_CHECK(t.get_id()==boost::thread::id());
|
|
}
|
|
|
|
void test_thread_id_for_running_thread_is_not_default_constructed_id()
|
|
{
|
|
boost::thread t(do_nothing);
|
|
BOOST_CHECK(t.get_id()!=boost::thread::id());
|
|
t.join();
|
|
}
|
|
|
|
void test_different_threads_have_different_ids()
|
|
{
|
|
boost::thread t(do_nothing);
|
|
boost::thread t2(do_nothing);
|
|
BOOST_CHECK(t.get_id()!=t2.get_id());
|
|
t.join();
|
|
t2.join();
|
|
}
|
|
|
|
void test_thread_ids_have_a_total_order()
|
|
{
|
|
boost::thread t(do_nothing);
|
|
boost::thread t2(do_nothing);
|
|
boost::thread t3(do_nothing);
|
|
BOOST_CHECK(t.get_id()!=t2.get_id());
|
|
BOOST_CHECK(t.get_id()!=t3.get_id());
|
|
BOOST_CHECK(t2.get_id()!=t3.get_id());
|
|
|
|
BOOST_CHECK((t.get_id()<t2.get_id()) != (t2.get_id()<t.get_id()));
|
|
BOOST_CHECK((t.get_id()<t3.get_id()) != (t3.get_id()<t.get_id()));
|
|
BOOST_CHECK((t2.get_id()<t3.get_id()) != (t3.get_id()<t2.get_id()));
|
|
|
|
BOOST_CHECK((t.get_id()>t2.get_id()) != (t2.get_id()>t.get_id()));
|
|
BOOST_CHECK((t.get_id()>t3.get_id()) != (t3.get_id()>t.get_id()));
|
|
BOOST_CHECK((t2.get_id()>t3.get_id()) != (t3.get_id()>t2.get_id()));
|
|
|
|
BOOST_CHECK((t.get_id()<t2.get_id()) == (t2.get_id()>t.get_id()));
|
|
BOOST_CHECK((t2.get_id()<t.get_id()) == (t.get_id()>t2.get_id()));
|
|
BOOST_CHECK((t.get_id()<t3.get_id()) == (t3.get_id()>t.get_id()));
|
|
BOOST_CHECK((t3.get_id()<t.get_id()) == (t.get_id()>t3.get_id()));
|
|
BOOST_CHECK((t2.get_id()<t3.get_id()) == (t3.get_id()>t2.get_id()));
|
|
BOOST_CHECK((t3.get_id()<t2.get_id()) == (t2.get_id()>t3.get_id()));
|
|
|
|
BOOST_CHECK((t.get_id()<t2.get_id()) == (t2.get_id()>=t.get_id()));
|
|
BOOST_CHECK((t2.get_id()<t.get_id()) == (t.get_id()>=t2.get_id()));
|
|
BOOST_CHECK((t.get_id()<t3.get_id()) == (t3.get_id()>=t.get_id()));
|
|
BOOST_CHECK((t3.get_id()<t.get_id()) == (t.get_id()>=t3.get_id()));
|
|
BOOST_CHECK((t2.get_id()<t3.get_id()) == (t3.get_id()>=t2.get_id()));
|
|
BOOST_CHECK((t3.get_id()<t2.get_id()) == (t2.get_id()>=t3.get_id()));
|
|
|
|
BOOST_CHECK((t.get_id()<=t2.get_id()) == (t2.get_id()>t.get_id()));
|
|
BOOST_CHECK((t2.get_id()<=t.get_id()) == (t.get_id()>t2.get_id()));
|
|
BOOST_CHECK((t.get_id()<=t3.get_id()) == (t3.get_id()>t.get_id()));
|
|
BOOST_CHECK((t3.get_id()<=t.get_id()) == (t.get_id()>t3.get_id()));
|
|
BOOST_CHECK((t2.get_id()<=t3.get_id()) == (t3.get_id()>t2.get_id()));
|
|
BOOST_CHECK((t3.get_id()<=t2.get_id()) == (t2.get_id()>t3.get_id()));
|
|
|
|
if((t.get_id()<t2.get_id()) && (t2.get_id()<t3.get_id()))
|
|
{
|
|
BOOST_CHECK(t.get_id()<t3.get_id());
|
|
}
|
|
else if((t.get_id()<t3.get_id()) && (t3.get_id()<t2.get_id()))
|
|
{
|
|
BOOST_CHECK(t.get_id()<t2.get_id());
|
|
}
|
|
else if((t2.get_id()<t3.get_id()) && (t3.get_id()<t.get_id()))
|
|
{
|
|
BOOST_CHECK(t2.get_id()<t.get_id());
|
|
}
|
|
else if((t2.get_id()<t.get_id()) && (t.get_id()<t3.get_id()))
|
|
{
|
|
BOOST_CHECK(t2.get_id()<t3.get_id());
|
|
}
|
|
else if((t3.get_id()<t.get_id()) && (t.get_id()<t2.get_id()))
|
|
{
|
|
BOOST_CHECK(t3.get_id()<t2.get_id());
|
|
}
|
|
else if((t3.get_id()<t2.get_id()) && (t2.get_id()<t.get_id()))
|
|
{
|
|
BOOST_CHECK(t3.get_id()<t.get_id());
|
|
}
|
|
else
|
|
{
|
|
BOOST_CHECK(false);
|
|
}
|
|
|
|
boost::thread::id default_id;
|
|
|
|
BOOST_CHECK(default_id < t.get_id());
|
|
BOOST_CHECK(default_id < t2.get_id());
|
|
BOOST_CHECK(default_id < t3.get_id());
|
|
|
|
BOOST_CHECK(default_id <= t.get_id());
|
|
BOOST_CHECK(default_id <= t2.get_id());
|
|
BOOST_CHECK(default_id <= t3.get_id());
|
|
|
|
BOOST_CHECK(!(default_id > t.get_id()));
|
|
BOOST_CHECK(!(default_id > t2.get_id()));
|
|
BOOST_CHECK(!(default_id > t3.get_id()));
|
|
|
|
BOOST_CHECK(!(default_id >= t.get_id()));
|
|
BOOST_CHECK(!(default_id >= t2.get_id()));
|
|
BOOST_CHECK(!(default_id >= t3.get_id()));
|
|
|
|
t.join();
|
|
t2.join();
|
|
t3.join();
|
|
}
|
|
|
|
void get_thread_id(boost::thread::id* id)
|
|
{
|
|
*id=boost::this_thread::get_id();
|
|
}
|
|
|
|
void test_thread_id_of_running_thread_returned_by_this_thread_get_id()
|
|
{
|
|
boost::thread::id id;
|
|
boost::thread t(boost::bind(get_thread_id,&id));
|
|
boost::thread::id t_id=t.get_id();
|
|
t.join();
|
|
BOOST_CHECK(id==t_id);
|
|
}
|
|
|
|
boost::unit_test::test_suite* init_unit_test_suite(int, char*[])
|
|
{
|
|
boost::unit_test::test_suite* test =
|
|
BOOST_TEST_SUITE("Boost.Threads: thread move test suite");
|
|
|
|
test->add(BOOST_TEST_CASE(test_thread_id_for_default_constructed_thread_is_default_constructed_id));
|
|
test->add(BOOST_TEST_CASE(test_thread_id_for_running_thread_is_not_default_constructed_id));
|
|
test->add(BOOST_TEST_CASE(test_different_threads_have_different_ids));
|
|
test->add(BOOST_TEST_CASE(test_thread_ids_have_a_total_order));
|
|
test->add(BOOST_TEST_CASE(test_thread_id_of_running_thread_returned_by_this_thread_get_id));
|
|
return test;
|
|
}
|