Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
4ee2f266
Commit
4ee2f266
authored
Oct 17, 2004
by
Andy Cedilnik
Browse files
ENH: Handle coverage errors
parent
bf326092
Changes
2
Hide whitespace changes
Inline
Side-by-side
Source/cmCTest.cxx
View file @
4ee2f266
...
...
@@ -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
]
)
{
...
...
Source/cmCTest.h
View file @
4ee2f266
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment