From 494893f7568d9d4087cf39f150e3f099786bab6c Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 7 Aug 2008 05:43:49 -0400 Subject: [PATCH] Fixed a bug that was causing RegressionTests not to run at all. --- Makefile.am | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 5a091937..cf31596b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -214,7 +214,8 @@ endif ###################################################################### -TESTS = UnitTests +TESTS = RegressionTests +XFAIL_TESTS = RegressionTests # jww (2008-08-07): for now if HAVE_CPPUNIT TESTS += UnitTests @@ -224,9 +225,7 @@ if HAVE_BOOST_PYTHON TESTS += PyUnitTests endif -XFAIL_TESTS = RegressionTests - -check_PROGRAMS = $(TESTS) $(XFAIL_TESTS) +check_PROGRAMS = $(TESTS) UnitTests_SOURCES = \ test/UnitTests.cc \