diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-07 05:43:49 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-07 05:43:49 -0400 |
commit | 494893f7568d9d4087cf39f150e3f099786bab6c (patch) | |
tree | 7ab8eb5116b543c6f9f69ed5c09fb13a0d76d6f0 | |
parent | b010b2fc78e3b18574edc44870c272c5514dd33a (diff) | |
download | ledger-494893f7568d9d4087cf39f150e3f099786bab6c.tar.gz ledger-494893f7568d9d4087cf39f150e3f099786bab6c.tar.bz2 ledger-494893f7568d9d4087cf39f150e3f099786bab6c.zip |
Fixed a bug that was causing RegressionTests not to run at all.
-rw-r--r-- | Makefile.am | 7 |
1 files 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 \ |