Only run the CheckTests if DEBUG mode is enabled
This commit is contained in:
parent
b95818026f
commit
71de29d2d5
1 changed files with 5 additions and 1 deletions
|
|
@ -248,7 +248,7 @@ endif
|
|||
######################################################################
|
||||
|
||||
TESTS = RegressTests BaselineTests ManualTests ConfirmTests \
|
||||
GenerateTests CheckTests
|
||||
GenerateTests
|
||||
|
||||
if HAVE_CPPUNIT
|
||||
TESTS += \
|
||||
|
|
@ -259,6 +259,10 @@ TESTS += \
|
|||
ReportTests
|
||||
endif
|
||||
|
||||
if DEBUG
|
||||
TESTS += CheckTests
|
||||
endif
|
||||
|
||||
if HAVE_BOOST_PYTHON
|
||||
TESTS += PyUnitTests
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue