Only run the CheckTests if DEBUG mode is enabled

This commit is contained in:
John Wiegley 2010-06-20 17:16:28 -04:00
parent b95818026f
commit 71de29d2d5

View file

@ -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