ENH: Handle coverage errors

This commit is contained in:
Andy Cedilnik 2004-10-17 18:49:42 -04:00
parent bf326092a8
commit 4ee2f266c6
2 changed files with 6 additions and 2 deletions

View File

@ -745,7 +745,10 @@ int cmCTest::ProcessTests()
if ( m_Tests[COVERAGE_TEST] || m_Tests[ALL_TEST] )
{
this->UpdateCTestConfiguration();
this->CoverageHandler->CoverageDirectory(this);
if (this->CoverageHandler->CoverageDirectory(this))
{
res |= cmCTest::COVERAGE_ERRORS;
}
}
if ( m_Tests[MEMCHECK_TEST] || m_Tests[ALL_TEST] )
{

View File

@ -133,7 +133,8 @@ public:
CONFIGURE_ERRORS = 0x02,
BUILD_ERRORS = 0x04,
TEST_ERRORS = 0x08,
MEMORY_ERRORS = 0x10
MEMORY_ERRORS = 0x10,
COVERAGE_ERRORS = 0x20
};
int GenerateNotesFile(const char* files);