Operational system = Ubuntu.
bjam usage = TRUE.
I want to optimize my unit testing system with help of OpenMP.
bjam script file:
lib my_lib
:
[ glob sources/*.cpp ]
:
<link>static
;
...
explicit my_project ;
unit-test my_project
:
[ glob UnitTests/*.cpp ]
my_lib
:
<linkflags>-fopenmp
<cflags>-fopenmp
;
The part of my code:
for(j = 0; j < AMOUNT; j++)
{
#pragma omp parallel for
for(i = 0; i < 0x10000; ++i)
{
...
try
{
variable1 = func1();
variable2 = func2();
//variable1 and variable 2 must be equal
CPPUNIT_ASSERT_MESSAGE("OLOLO", variable1 == variable2);
}
catch (const std::logic_error& exception)
{
std::cerr << exception.what() << std::endl;
CPPUNIT_ASSERT_MESSAGE("OLOLO", 0);
}
catch (const std::runtime_error & exception)
{
std::cerr << exception.what() << std::endl;
CPPUNIT_ASSERT_MESSAGE("OLOLO", 0);
}
}
}
When I launch my testing system it exits with error:
terminate called without an active exception
Aborted
I comment lines CPPUNIT_ASSERT_MESSAGE:
for(j = 0; j < AMOUNT; j++)
{
#pragma omp parallel for
for(i = 0; i < 0x10000; ++i)
{
...
try
{
variable1 = func1();
variable2 = func2();
//CPPUNIT_ASSERT_MESSAGE("OLOLO", variable1 == variable2);
}
catch (const std::logic_error& exception)
{
std::cerr << exception.what() << std::endl;
//CPPUNIT_ASSERT_MESSAGE("OLOLO", 0);
}
catch (const std::runtime_error & exception)
{
std::cerr << exception.what() << std::endl;
//CPPUNIT_ASSERT_MESSAGE("OLOLO", 0);
}
}
}
And it works in the way just I need. But I need CPPUNIT_ASSERT_MESSAGE to output information in case of wrong results. Why CPPUNIT_ASSERT_MESSAGE causes errors and what should I do to get rid of these errors.
CPPUNIT works by stopping the program when it encounters an error. To output the information in case of wrong results instead of stopping the program then you must configure the XmlOutputter and create a TestRunner that uses it.
For example:
That way you have a test runner that outputs to an xml stream instead of stopping the test.
Hope it helps