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 \
|
TESTS = RegressTests BaselineTests ManualTests ConfirmTests \
|
||||||
GenerateTests CheckTests
|
GenerateTests
|
||||||
|
|
||||||
if HAVE_CPPUNIT
|
if HAVE_CPPUNIT
|
||||||
TESTS += \
|
TESTS += \
|
||||||
|
|
@ -259,6 +259,10 @@ TESTS += \
|
||||||
ReportTests
|
ReportTests
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if DEBUG
|
||||||
|
TESTS += CheckTests
|
||||||
|
endif
|
||||||
|
|
||||||
if HAVE_BOOST_PYTHON
|
if HAVE_BOOST_PYTHON
|
||||||
TESTS += PyUnitTests
|
TESTS += PyUnitTests
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue