mirror of https://github.com/davisking/dlib.git
changed test to avoid compiler error in gcc 4.8
This commit is contained in:
parent
3406a290bc
commit
24698f87ce
|
@ -183,18 +183,26 @@ namespace
|
||||||
DLIB_TEST(is_running() == false);
|
DLIB_TEST(is_running() == false);
|
||||||
}
|
}
|
||||||
|
|
||||||
~test4_c2() throw (std::exception)
|
~test4_c2()
|
||||||
{
|
{
|
||||||
DLIB_TEST(number_of_threads_registered() == 2);
|
try
|
||||||
DLIB_TEST(number_of_threads_alive() == 2);
|
{
|
||||||
DLIB_TEST_MSG(is_running() == false,"is_running(): " << is_running());
|
DLIB_TEST(number_of_threads_registered() == 2);
|
||||||
stop();
|
DLIB_TEST(number_of_threads_alive() == 2);
|
||||||
DLIB_TEST(number_of_threads_registered() == 2);
|
DLIB_TEST_MSG(is_running() == false,"is_running(): " << is_running());
|
||||||
DLIB_TEST(is_running() == false);
|
stop();
|
||||||
wait();
|
DLIB_TEST(number_of_threads_registered() == 2);
|
||||||
DLIB_TEST(number_of_threads_registered() == 2);
|
DLIB_TEST(is_running() == false);
|
||||||
DLIB_TEST(number_of_threads_alive() == 0);
|
wait();
|
||||||
DLIB_TEST(is_running() == false);
|
DLIB_TEST(number_of_threads_registered() == 2);
|
||||||
|
DLIB_TEST(number_of_threads_alive() == 0);
|
||||||
|
DLIB_TEST(is_running() == false);
|
||||||
|
}
|
||||||
|
catch(std::exception& e)
|
||||||
|
{
|
||||||
|
std::cerr << e.what() << std::endl;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue