Skip to content
Snippets Groups Projects
Commit 6eec2654 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

ENH: improve dsiplayed message if the submitted image is too big

parent 7d8f574f
No related branches found
No related tags found
No related merge requests found
......@@ -716,7 +716,9 @@ int TestHelper::RegressionTestImage(int cpt, const char *testImageFilename, cons
else
{
std::cout << "<DartMeasurement name=\"DifferenceImage " << cpt << "\" type=\"text/string\">";
std::cout << "DIFFERENCE IMAGE TOO BIG TO BE EXPORTED";
std::cout << "*************************************************************\n";
std::cout << "********** DIFFERENCE IMAGE TOO BIG TO BE SUBMITTED *********\n";
std::cout << "*************************************************************";
std::cout << "</DartMeasurement>" << std::endl;
}
......@@ -753,7 +755,9 @@ int TestHelper::RegressionTestImage(int cpt, const char *testImageFilename, cons
else
{
std::cout << "<DartMeasurement name=\"BaselineImage " << cpt << "\" type=\"text/string\">";
std::cout << "BASELINE IMAGE TOO BIG TO BE EXPORTED";
std::cout << "*************************************************************\n";
std::cout << "*********** BASELINE IMAGE TOO BIG TO BE SUBMITTED **********\n";
std::cout << "*************************************************************";
std::cout << "</DartMeasurement>" << std::endl;
}
......@@ -790,7 +794,9 @@ int TestHelper::RegressionTestImage(int cpt, const char *testImageFilename, cons
else
{
std::cout << "<DartMeasurement name=\"TestImage " << cpt << "\" type=\"text/string\">";
std::cout << "TEST IMAGE TOO BIG TO BE EXPORTED";
std::cout << "*************************************************************\n";
std::cout << "************* TEST IMAGE TOO BIG TO BE SUBMITTED ************\n";
std::cout << "*************************************************************";
std::cout << "</DartMeasurement>" << std::endl;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment