Newer
Older
Tomáš Oberhuber
committed
if( rank == 7 )
{
SCOPED_TRACE( "Down Center" );
checkDownBoundary( *gridPtr, *dof, true, true, 7 );
}
if( rank == 8 )
{
SCOPED_TRACE( "Down Right" );
checkDownBoundary( *gridPtr, *dof, true, false, 8 );
checkRightBoundary( *gridPtr, *dof, true, false, -7 );
}
Tomáš Oberhuber
committed
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
#else
TEST(NoMPI, NoTest)
{
ASSERT_TRUE(true) << ":-(";
}
#endif
#endif
#if (defined(HAVE_GTEST) && defined(HAVE_MPI))
#include <sstream>
class MinimalistBufferedPrinter : public ::testing::EmptyTestEventListener {
private:
std::stringstream sout;
public:
// Called before a test starts.
virtual void OnTestStart(const ::testing::TestInfo& test_info) {
sout<< test_info.test_case_name() <<"." << test_info.name() << " Start." <<std::endl;
}
// Called after a failed assertion or a SUCCEED() invocation.
virtual void OnTestPartResult(
const ::testing::TestPartResult& test_part_result) {
sout << (test_part_result.failed() ? "====Failure=== " : "===Success=== ")
<< test_part_result.file_name() << " "
<< test_part_result.line_number() <<std::endl
<< test_part_result.summary() <<std::endl;
}
// Called after a test ends.
virtual void OnTestEnd(const ::testing::TestInfo& test_info)
{
int rank=CommunicatorType::GetRank(CommunicatorType::AllGroup);
sout<< test_info.test_case_name() <<"." << test_info.name() << " End." <<std::endl;
std::cout << rank << ":" << std::endl << sout.str()<< std::endl;
sout.str( std::string() );
sout.clear();
}
};
#endif
#include "../../GtestMissingError.h"
int main( int argc, char* argv[] )
{
#ifdef HAVE_GTEST
::testing::InitGoogleTest( &argc, argv );
#ifdef HAVE_MPI
::testing::TestEventListeners& listeners =
::testing::UnitTest::GetInstance()->listeners();
delete listeners.Release(listeners.default_result_printer());
listeners.Append(new MinimalistBufferedPrinter);
Communicators::ScopedInitializer< CommunicatorType > mpi(argc, argv);
#else
throw GtestMissingError();
#endif
}