Fixed a bug that was causing RegressionTests not to run at all.

This commit is contained in:
John Wiegley 2008-08-07 05:43:49 -04:00
parent b010b2fc78
commit 494893f756

View file

@ -214,7 +214,8 @@ endif
###################################################################### ######################################################################
TESTS = UnitTests TESTS = RegressionTests
XFAIL_TESTS = RegressionTests # jww (2008-08-07): for now
if HAVE_CPPUNIT if HAVE_CPPUNIT
TESTS += UnitTests TESTS += UnitTests
@ -224,9 +225,7 @@ if HAVE_BOOST_PYTHON
TESTS += PyUnitTests TESTS += PyUnitTests
endif endif
XFAIL_TESTS = RegressionTests check_PROGRAMS = $(TESTS)
check_PROGRAMS = $(TESTS) $(XFAIL_TESTS)
UnitTests_SOURCES = \ UnitTests_SOURCES = \
test/UnitTests.cc \ test/UnitTests.cc \